麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 數據庫 > MySQL > 正文

mysql in語句子查詢效率慢的優化技巧示例

2024-07-24 13:14:41
字體:
來源:轉載
供稿:網友

表結構如下,文章只有690篇。

文章表article(id,title,content)標簽表tag(tid,tag_name)標簽文章中間表article_tag(id,tag_id,article_id)

其中有個標簽的tid是135,查詢標簽tid是135的文章列表。

690篇文章,用以下的語句查詢,奇慢:

select id,title from article where id in(select article_id from article_tag where tag_id=135)

其中這條速度很快:

select article_id from article_tag where tag_id=135

查詢結果是五篇文章,id為428,429,430,431,432

用下面sql來查文章也很快:

select id,title from article where id in(428,429,430,431,432)

解決方法:

select id,title from article where id in(select article_id from (select article_id from article_tag where tag_id=135) as tbt)

其它解決方法:(舉例)

mysql/15428.html">mysql> select * from abc_number_prop where number_id in (select number_id from abc_number_phone where phone = '82306839');

為了節省篇幅,省略了輸出內容,下同。

67 rows in set (12.00 sec)

只有67行數據返回,卻花了12秒,而系統中可能同時會有很多這樣的查詢,系統肯定扛不住。用desc看一下(注:explain也可)

mysql> desc select * from abc_number_prop where number_id in (select number_id from abc_number_phone where phone = '82306839');+----+--------------------+------------------+--------+-----------------+-------+---------+------------+---------+--------------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+--------------------+------------------+--------+-----------------+-------+---------+------------+---------+--------------------------+| 1 | PRIMARY | abc_number_prop | ALL | NULL | NULL | NULL | NULL | 2679838 | Using where || 2 | DEPENDENT SUBQUERY | abc_number_phone | eq_ref | phone,number_id | phone | 70 | const,func | 1 | Using where; Using index |+----+--------------------+------------------+--------+-----------------+-------+---------+------------+---------+--------------------------+2 rows in set (0.00 sec)

可以看出,在執行此查詢時會掃描兩百多萬行,難道是沒有創建索引嗎,看一下

mysql>show index from abc_number_phone;+------------------+------------+-------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |+------------------+------------+-------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+| abc_number_phone | 0 | PRIMARY | 1 | number_phone_id | A | 36879 | NULL | NULL | | BTREE | | || abc_number_phone | 0 | phone | 1 | phone | A | 36879 | NULL | NULL | | BTREE | | || abc_number_phone | 0 | phone | 2 | number_id | A | 36879 | NULL | NULL | | BTREE | | || abc_number_phone | 1 | number_id | 1 | number_id | A | 36879 | NULL | NULL | | BTREE | | || abc_number_phone | 1 | created_by | 1 | created_by | A | 36879 | NULL | NULL | | BTREE | | || abc_number_phone | 1 | modified_by | 1 | modified_by | A | 36879 | NULL | NULL | YES | BTREE | | |+------------------+------------+-------------+--------------+-----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+6 rows in set (0.06 sec)mysql>show index from abc_number_prop;+-----------------+------------+-------------+--------------+----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |+-----------------+------------+-------------+--------------+----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+| abc_number_prop | 0 | PRIMARY | 1 | number_prop_id | A | 311268 | NULL | NULL | | BTREE | | || abc_number_prop | 1 | number_id | 1 | number_id | A | 311268 | NULL | NULL | | BTREE | | || abc_number_prop | 1 | created_by | 1 | created_by | A | 311268 | NULL | NULL | | BTREE | | || abc_number_prop | 1 | modified_by | 1 | modified_by | A | 311268 | NULL | NULL | YES | BTREE | | |+-----------------+------------+-------------+--------------+----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+4 rows in set (0.15 sec)

從上面的輸出可以看出,這兩張表在number_id字段上創建了索引的。
看看子查詢本身有沒有問題。

mysql> desc select number_id from abc_number_phone where phone = '82306839';+----+-------------+------------------+------+---------------+-------+---------+-------+------+--------------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+-------------+------------------+------+---------------+-------+---------+-------+------+--------------------------+| 1 | SIMPLE | abc_number_phone | ref | phone | phone | 66 | const | 6 | Using where; Using index |+----+-------------+------------------+------+---------------+-------+---------+-------+------+--------------------------+1 row in set (0.00 sec)

沒有問題,只需要掃描幾行數據,索引起作用了。

查詢出來看看:

mysql> select number_id from abc_number_phone where phone = '82306839';+-----------+| number_id |+-----------+| 8585 || 10720 || 148644 || 151307 || 170691 || 221897 |+-----------+6 rows in set (0.00 sec)

直接把子查詢得到的數據放到上面的查詢中

mysql> select * from abc_number_prop where number_id in (8585, 10720, 148644, 151307, 170691, 221897);67 rows in set (0.03 sec)

速度也快,看來MySQL在處理子查詢的時候是不夠好。我在MySQL 5.1.42 和 MySQL 5.5.19 都進行了嘗試,都有這個問題。

搜索了一下網絡,發現很多人都遇到過這個問題:

參考資料1:MySQL優化之使用連接(join)代替子查詢

參考資料2:MYSQL子查詢和嵌套查詢優化實例解析

根據網上這些資料的建議,改用join來試試。
修改前:

select * from abc_number_prop where number_id in (select number_id from abc_number_phone where phone = '82306839');

修改后:

select a.* from abc_number_prop a inner join abc_number_phone b on a.number_id = b.number_id where phone = '82306839';mysql> select a.* from abc_number_prop a inner join abc_number_phone b on a.number_id = b.number_id where phone = '82306839';67 rows in set (0.00 sec)

效果不錯,查詢所用時間幾乎為0。看一下MySQL是怎么執行這個查詢的

mysql>desc select a.* from abc_number_prop a inner join abc_number_phone b on a.number_id = b.number_id where phone = '82306839';+----+-------------+-------+------+-----------------+-----------+---------+-----------------+------+--------------------------+| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |+----+-------------+-------+------+-----------------+-----------+---------+-----------------+------+--------------------------+| 1 | SIMPLE | b | ref | phone,number_id | phone | 66 | const | 6 | Using where; Using index || 1 | SIMPLE | a | ref | number_id | number_id | 4 | eap.b.number_id | 3 | |+----+-------------+-------+------+-----------------+-----------+---------+-----------------+------+--------------------------+2 rows in set (0.00 sec)

小結:當子查詢速度慢時,可用JOIN來改寫一下該查詢來進行優化。

網上也有文章說,使用JOIN語句的查詢不一定總比使用子查詢的語句快。

mysql手冊也提到過,具體的原文在mysql文檔的這個章節:
I.3. Restrictions on Subqueries
13.2.8. Subquery Syntax

摘抄:

1)關于使用IN的子查詢:

Subquery optimization for IN is not as effective as for the = operator or for IN(value_list) constructs.

A typical case for poor IN subquery performance is when the subquery returns a small number of rows but the outer query returns a large number of rows to be compared to the subquery result.

The problem is that, for a statement that uses an IN subquery, the optimizer rewrites it as a correlated subquery. Consider the following statement that uses an uncorrelated subquery:

SELECT ... FROM t1 WHERE t1.a IN (SELECT b FROM t2);

The optimizer rewrites the statement to a correlated subquery:

SELECT ... FROM t1 WHERE EXISTS (SELECT 1 FROM t2 WHERE t2.b = t1.a);

If the inner and outer queries return M and N rows, respectively, the execution time becomes on the order of O(M×N), rather than O(M+N) as it would be for an uncorrelated subquery.

An implication is that an IN subquery can be much slower than a query written using an IN(value_list) construct that lists the same values that the subquery would return.

2)關于把子查詢轉換成join的:

The optimizer is more mature for joins than for subqueries, so in many cases a statement that uses a subquery can be executed more efficiently if you rewrite it as a join.

An exception occurs for the case where an IN subquery can be rewritten as a SELECT DISTINCT join. Example:

SELECT col FROM t1 WHERE id_col IN (SELECT id_col2 FROM t2 WHERE condition);

That statement can be rewritten as follows:

SELECT DISTINCT col FROM t1, t2 WHERE t1.id_col = t2.id_col AND condition;

But in this case, the join requires an extra DISTINCT operation and is not more efficient than the subquery

總結

以上就是本文關于mysql in語句子查詢效率慢的優化技巧示例的全部內容,有什么問題可以留言,歡迎大家一起交流參考。希望本文所述對大家有所幫助。


注:相關教程知識閱讀請移步到MYSQL教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 九色中文 | 精品国产一区二区在线 | 黄色羞羞视频在线观看 | 国产成人高清成人av片在线看 | 欧美性受xxx黑人xyx性爽 | 久久久久亚洲精品 | 蜜桃免费在线 | 国产精品自拍啪啪 | 国内一区| 深夜免费福利视频 | 1级毛片在线观看 | 91成人免费看片 | 免费一级毛片在线播放不收费 | 免费观看一区二区三区视频 | 曰批全过程120分钟免费69 | 深夜小视频在线观看 | 国产精品视频一区二区三区四区国 | 中文字幕亚洲一区二区三区 | 免费a级黄色片 | 国产精品久久久久久久久久大牛 | 国产精品久久久久久久四虎电影 | 国产91影院 | 黄色网电影| 久久男人天堂 | 97精品国产高清在线看入口 | 毛片在线免费观看视频 | 黄污在线观看 | 中国美女一级黄色大片 | 娇喘视频在线观看 | 日韩一级精品 | 欧美日韩视频在线播放 | wankz100%videos | 中国成人在线视频 | 成人视屏在线观看 | 成码无人av片在线观看网站 | 好吊色欧美一区二区三区四区 | 在线播放视频一区二区 | 18欧美性xxxx极品hd | 免费国产不卡午夜福在线 | 毛片免费观看完整版 | 美女扒开腿让男生桶爽网站 |