- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想在 MySQL 8.0 中获取查询的执行计划,但它给了我一个不完整的计划。
2018 年 9 月 8 日编辑:
通过展示一个简化示例,原始查询以未检索任何行的子查询结束。似乎 MySQL 的优化器将这些查询简化到完全修剪部分查询的程度。我修改了查询以获取有关子查询的数据。这是示例:
create table branch (
id int primary key not null,
name varchar(30) not null
);
insert into branch (id, name) values (101, 'California');
insert into branch (id, name) values (102, 'Ohio');
insert into branch (id, name) values (103, 'Delaware');
create table account (
id int primary key not null auto_increment,
balance int
);
insert into account (id, balance) values (1001, 120);
insert into account (id, balance) values (1004, 500);
insert into account (id, balance) values (1005, 45);
create table transaction (
tx_id int primary key not null auto_increment,
account_id int not null,
amount int not null,
branch_id int references branch (id)
);
insert into transaction (account_id, amount, branch_id) values
(1001, 10, 101),
(1001, 150, 101),
(1001, 200, 101),
(1001, -70, 102),
(1001, -20, 102),
(1001,-150, 102),
(1004, 50, 103),
(1004, 300, 101),
(1004, 150, 102),
(1005, 100, 102),
(1005, -55, 101);
现在的查询是:
explain
select *
from account a
join transaction t4 on t4.account_id = a.id
join branch b5 on b5.id = t4.branch_id
join (select account_id as account_id from transaction t7 where amount > 0) t6
on t6.account_id = a.id
where a.balance < 7 * (
select avg(amount) from transaction t
join branch b on b.id = t.branch_id
where t.account_id = a.id
and b.name in (select name from branch b7
where name like '%a%')
)
and a.balance < 5 * (
select max(amount)
from transaction t2
join branch b2 on b2.id = t2.branch_id
where b2.name not in (select name from branch b8
where name like '%i%')
);
现在显示(传统方案):
id select_type table type key key_len ref rows filtered Extra
-- ------------------- ----- ------ ------- ------- --- ---- -------- -----
1 PRIMARY a ALL 3 33.33 Using where
1 PRIMARY t7 ALL 11 9.09 Using where
1 PRIMARY t4 ALL 11 10 Using where
1 PRIMARY b5 eq_ref PRIMARY 4 ... 1 100
5 SUBQUERY b2 ALL 3 100 Using where
5 SUBQUERY t2 ALL 11 10 Using where
6 DEPENDENT SUBQUERY b8 ALL 3 33.33 Using where
3 DEPENDENT SUBQUERY b7 ALL 3 33.33 Using where
3 DEPENDENT SUBQUERY t ALL 11 10 Using where
3 DEPENDENT SUBQUERY b eq_ref PRIMARY 4 ... 1 33.33 Using where
它现在显示除标量子查询 t6
之外的所有表的信息。它在哪里?
最佳答案
我尝试测试您的查询,但我在任何表中都有零行。 EXPLAIN 显示“Impossible WHERE noticeed after reading const tables”,这意味着没有满足查询条件的行。
在我的测试中,我看到了 t2、b2、b8、t、b、b7、t7,但没有看到 a、t4、b5、t6。如果不读取表,它似乎会从 EXPLAIN 中省略表,因为查询条件意味着读取它们没有意义,因为它们保证不匹配任何行。
我看不出这个条款有任何合乎逻辑的目的:
join (select max(account_id) as account_id from transaction t7) t6
on t6.account_id = a.id
如果我从查询中取出这个连接,我会得到一个没有“Impossible WHERE”注释的 EXPLAIN,并且它具有所有其他相关名称:
+----+--------------------+-------+------+---------------+------+---------+------+------+-------------------------------------------------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+--------------------+-------+------+---------------+------+---------+------+------+-------------------------------------------------------------------+
| 1 | PRIMARY | a | ALL | PRIMARY | NULL | NULL | NULL | 1 | Using where |
| 1 | PRIMARY | t4 | ALL | NULL | NULL | NULL | NULL | 2 | Using where; Using join buffer (Block Nested Loop) |
| 1 | PRIMARY | b5 | ALL | PRIMARY | NULL | NULL | NULL | 2 | Using where; Using join buffer (Block Nested Loop) |
| 4 | SUBQUERY | t2 | ALL | NULL | NULL | NULL | NULL | 2 | NULL |
| 4 | SUBQUERY | b2 | ALL | PRIMARY | NULL | NULL | NULL | 2 | Using where; Using join buffer (Block Nested Loop) |
| 5 | DEPENDENT SUBQUERY | b8 | ALL | NULL | NULL | NULL | NULL | 2 | Using where |
| 2 | DEPENDENT SUBQUERY | t | ALL | NULL | NULL | NULL | NULL | 2 | Using where |
| 2 | DEPENDENT SUBQUERY | b | ALL | PRIMARY | NULL | NULL | NULL | 2 | Using where; Using join buffer (Block Nested Loop) |
| 2 | DEPENDENT SUBQUERY | b7 | ALL | NULL | NULL | NULL | NULL | 2 | Using where; FirstMatch(b); Using join buffer (Block Nested Loop) |
+----+--------------------+-------+------+---------------+------+---------+------+------+-------------------------------------------------------------------+
我没有像我在你的表中猜测的那样创建任何索引,所以这个 EXPLAIN 没有显示优化。但至少所有相关名称都出现了。
关于sql - MySQL 8 中不完整的执行计划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52119462/
我的程序有问题。 我有一个比较两个字符串的条件: (if (eq? (exp1) (exp2))) 当 exp1 给我一个字符串,exp2 给我一个字符串。可以肯定的是,当我更改“eq?”时到“=”,
我们有多种主要使用 GWT 开发的产品,目前由我们的最终客户使用。 想知道 GWT 的路线图。我得到了一些非官方的更新,谷歌正在将 GWT 中开发的产品转移到其他一些新技术。这是真的吗? GWT 的长
我希望每 15 分钟定期构建一次。我在网上看过,我正在使用这个时间表:*/15 * * * * Jenkins 告诉我使用 H/15 * * * * 来平均分配负载而不是 */15 * * * * 有
所以我正试图在 Scheme 中找出整个 call/cc 的东西。下面是我正在使用的代码: (+ 1 (call/cc (lambda (k) (if (number? k)
所以我正试图在 Scheme 中找出整个 call/cc 的东西。下面是我正在使用的代码: (+ 1 (call/cc (lambda (k) (if (number? k)
我们有一个 Azure WebJob,计划在 UTC 每天上午 8:00 运行(CRON - 0 00 08 * * *)。大多数时候它都会正确触发,但有时会触发两次(第二次运行)第一次运行后约 10
我是 Terraform 的新手。我正在尝试通过 azure 管道创建一个简单的存储帐户,但是当我运行我的管道时,我收到错误“太多命令行参数”。我很震惊,我不知道自己做错了什么。有人可以帮忙吗。 这是
我想在某些逻辑中间停止芭蕾舞 Actor 程序。如何使用代码停止 ballerina 中正在运行的程序?我正在寻找相当于 java 中的 System.exit(0) 的东西。 最佳答案 我相信您正在
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 8年前关闭。 Improve this qu
我们有一个 Azure WebJob,计划在 UTC 每天上午 8:00 运行(CRON - 0 00 08 * * *)。大多数时候它都会正确触发,但有时会触发两次(第二次运行)第一次运行后约 10
我是 Terraform 的新手。我正在尝试通过 azure 管道创建一个简单的存储帐户,但是当我运行我的管道时,我收到错误“太多命令行参数”。我很震惊,我不知道自己做错了什么。有人可以帮忙吗。 这是
我正在浏览 htdp 并在一开始的某个地方发现了这个:- Explain why the following sentences are illegal definitions: 1. (define
我正在使用 Laravel 开发成员(member)门户。 成员(member)资格有不同的类别,例如1) 单人2) 成人3) 家庭以及不同价格的所有类型。 我有一个 plans 表和 plans_s
我使用 DreamHost 作为我的网站的服务器,并且我尝试每天、每周和每月执行某个 MySQL 查询来更改我的网站的数据库。我开始在本地主机上使用事件调度程序,然后我发现我无法在 DreamHost
这周我的 crontab 作业发生了一个问题。 设置如下,每两周正常运行一次,直到现在。 10 06 * * 1 test $(($(date +\%W)\%2)) -eq 0 && echo 'te
编写了一个简单的脚本,它将在日志文件中写入日期时间戳,并且每次运行该脚本时,它都会附加到该日志文件中。 #!/bin/sh echo $(date) >> log.txt 当我尝试每 1 分钟安排一次
我对 PIPE 的了解是它用于单向通信,它有助于在两个相关进程之间进行通信。我从一本书中得到了下面的 PIPE 编程代码示例。我正在尝试使用 printf 理解代码并在代码的每一行之后打印出所有点。但
代码如下: (define make-simple-sv-num (lambda (delare) (let ((tal (random-from-to 100000 1000000)))
我目前正在使用“How To Design Programs”——使用 Scheme/Racket;我在 Scheme 的 R5RS 版本中遇到了一个非常奇特的功能。 在进行简单的减法时,尽管使用的是
我想确定时间表的详细信息。例如: 我有一个事件的时间表:event.schedule "Every 3 months on the 10th day of the month" 由哈希表示: {
我是一名优秀的程序员,十分优秀!