欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySql如何使用not in实现优化

程序员文章站 2022-11-19 20:14:27
最近项目上用select查询时使用到了not in来排除用不到的主键id一开始使用的sql如下:select   s.sort_id,  s.sort_name,  s.sort_status,  s...

最近项目上用select查询时使用到了not in来排除用不到的主键id一开始使用的sql如下:

select 
  s.sort_id,
  s.sort_name,
  s.sort_status,
  s.sort_logo_url,
  s.sort_logo_url_light
from sys_sort_promote s
  where
    s.sort_name = '必听经典'
    and s.sort_id not in ("sortid001")
  limit 1;

表中的数据较多时这个sql的执行时间较长、执行效率低,在网上找资料说可以用 left join进行优化,优化后的sql如下:

select 
  s.sort_id,
  s.sort_name,
  s.sort_status,
  s.sort_logo_url,
  s.sort_logo_url_light
from sys_sort_promote s
left join (select sort_id from sys_sort_promote where sort_id=#{sortid}) b
on s.sort_id = b.sort_id
  where
    b.sort_id is null
    and s.sort_name = '必听经典'
  limit 1;

上述sort_id=#{sortid} 中的sortid传入sort_id这个字段需要排除的id值,左外连接时以需要筛选的字段(sort_id)作为连接条件,最后在where条件中加上b.sort_id is null来将表中的相关数据筛选掉就可以了。

这里写下随笔,记录下优化过程。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。