作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何让 MySQL 首先运行子查询并且只运行一次?现在 MySQL 对表 t1 中的每一行运行内部查询,这是一个性能灾难。
explain select * from t1 where uid in (select id from t0);
+----+--------------------+-------+------+---------------+------+---------+------+----------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+--------------------+-------+------+---------------+------+---------+------+----------+-------------+
| 1 | PRIMARY | t1 | ALL | NULL | NULL | NULL | NULL | 18954249 | Using where |
| 2 | DEPENDENT SUBQUERY | t0 | ALL | NULL | NULL | NULL | NULL | 12749 | Using where |
+----+--------------------+-------+------+---------------+------+---------+------+----------+-------------+
最佳答案
如果您执行内部联接
,您将获得所需的结果。
来自:
select * from t1 where uid in (select id from t0);
收件人:
select * from t1 join t0 on t1.t0id = t0.id
关于mysql - 如何首先且仅运行一次子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16121305/
我是一名优秀的程序员,十分优秀!