码迷,mamicode.com
首页 > 数据库 > 详细

Mysql in 优化

时间:2018-05-15 01:50:26      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:code   highlight   body   sql   SQ   mys   select   from   class   

表结构如下,文章只有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 in 优化

标签:code   highlight   body   sql   SQ   mys   select   from   class   

原文地址:https://www.cnblogs.com/CryOnMyShoulder/p/9038780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!