腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(9999+)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
Postgresql
EXPLAIN
命令
当我运行
EXPLAIN
命令时,我看到: -> Bitmap Index Scan on feature_expr_idx (cost=0.00..8.10 rows=14 width=0) feature_expr_idx
浏览 27
修改于2020-08-22
得票数 3
回答已采纳
1
回答
explain
()不是函数
在运行db.grades.
explain
().find()时遇到问题-我一直收到消息"TypeError: db.grades.
explain
不是一个函数(外壳):1“ 但是,我可以使用db.grades.find().
explain
() --但是使用此方法返回的信息不如collection.
explain
()有用。
浏览 1
修改于2017-04-03
得票数 1
1
回答
MongoDB -
explain
.executionStats
MongoDB的
explain
("executionStats")的输出中是否有任何元素给出了一个想法或提示--无论查询是使用给定的索引进行筛选或排序,还是两者都使用?
浏览 0
提问于2019-06-29
得票数 1
回答已采纳
1
回答
Postgres
EXPLAIN
从不返回结果
当我在查询上运行
EXPLAIN
时,它没有返回(在等待5+分钟之后)。
浏览 0
提问于2016-06-10
得票数 0
1
回答
理解mongodb
explain
()输出
我们在
explain
()输出中寻找什么来确定给定的索引是否用于辅助查询的排序部分?当对任何查询运行
explain
()时,我们可以看到使用了哪个索引和一些片段,如下所示 "winningPlan" : { "stage" : "SORT"
浏览 12
修改于2019-05-02
得票数 0
回答已采纳
1
回答
使用Count和
Explain
所以我可以这样做:它将显示实际的sql查询。'count‘方法也进行sql查询,但由于'count’返回一个数字,而不是活动记录,所以我不能对它使用
explain
。有没有办法做到这一点?
浏览 0
修改于2016-01-16
得票数 1
1
回答
基于
explain
的Mysql优化
我有以下查询需要很长时间才能执行。我需要加快速度,但我不知道该使用什么技术。以下是查询: `User`.`id`, `User`.`password`, `User`.`created`, `User`.`email`, `User`.`first_name`, `User`.`p
浏览 4
提问于2013-11-28
得票数 2
1
回答
MongoDB:$match和$
explain
0}}}, {$project: {"_id":0,"total":1}}我想要执行$
explain
浏览 0
修改于2017-09-22
得票数 1
回答已采纳
1
回答
db.collection.
explain
().find() vs db.collection.find().
explain
()
db.collection.
explain
().find() db.collection.find().
explain
()
浏览 3
提问于2015-08-27
得票数 3
回答已采纳
2
回答
ELI5
explain
_weights和
explain
_predictions as pandas DataFrame
如何将ELI5
explain
_weights和
explain
_prediction保存为pandas DataFrame?feature_names=df.columns[:-1].tolistdoes not "work", i.e. it produces a NoneType objecteli5.formatte
浏览 0
修改于2019-11-09
得票数 4
1
回答
使用
EXPLAIN
优化MySQL查询
我正在尝试使用解释优化我的MySQL查询。下面是一个非常简单的查询示例:当我看到“解释”时,它显示:| id | select_
浏览 3
修改于2016-02-28
得票数 1
1
回答
使用
explain
优化MySQL查询
我有以下SQL这是解释结果。{ "select_type": "SIMPLE", "type": "index", "key": "e
浏览 5
修改于2022-05-12
得票数 1
回答已采纳
1
回答
postgres sql
explain
delete语句
在postgres
EXPLAIN
DELETE FROM ...的返回中:花费19474意味着执行时间是以秒为单位吗
浏览 1
提问于2011-10-24
得票数 0
回答已采纳
1
回答
解释postgres的
EXPLAIN
输出
我已经阅读了文档,但我想问一个更具体的问题来尝试理解
EXPLAIN
输出。 查询的最后一步是嵌套循环left join,它显示成本为0.01 ... 3108.35 rows=1 width=185。
浏览 4
修改于2011-11-12
得票数 3
2
回答
auto_
explain
_threshold_in_seconds
auto_
explain
_threshold_in_seconds已设置,但将被忽略,因为适配器不支持此功能。请取消设置配置以避免此警告。
浏览 1
提问于2013-04-08
得票数 7
回答已采纳
1
回答
使用
explain
优化mysql查询
我通过
EXPLAIN
运行了第一个源查询,我不知道还能做什么来进一步优化它: *************************** 1. row ***************************我以前从未使用过
EXPLAIN
,所以我需要一些lost...what步骤来保持这个特定的查询不需要花12秒的时间运行吗?
浏览 0
提问于2015-06-01
得票数 0
回答已采纳
1
回答
Mysql -
Explain
键为空
在我的表格电子邮件中 mysql>
explain
select * from Emails where email_id IN (2029000006126024, 2029000004564319
浏览 3
修改于2018-03-29
得票数 1
1
回答
带有
explain
的mongodb findOne
在mongodb中是否可以使用
explain
进行findOne?目前我已经尝试过:db.collection.findOne({query})._addSpecial( "$
explain
", 1 )我确实理解我可以做limit 1,但是没有它我能做到吗?
浏览 2
修改于2021-03-22
得票数 8
1
回答
auto_
explain
不记录
我打开了auto_
explain
,将next valued添加到postgresql.conf中:auto_
explain
.log_min_duration = '3s' 在我的监视中,我可以看到长时间运行的查询超过了3s的限制,并且成功地完成了
浏览 0
修改于2019-12-10
得票数 0
2
回答
查询耗时很长(包括
Explain
)
school_data_race_ethnicity_raw_outer.year, mysql>
explain
浏览 3
修改于2012-09-07
得票数 2
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券