mysql查询语句优化方法
发布网友
发布时间:2022-04-22 10:46
我来回答
共1个回答
热心网友
时间:2022-04-07 16:35
not in 在大数据表的情况下效率极低(小数据表则没问题),此时应避免使用它。另外join连接的效率会比不指定连接类型的连接效率稍微低一点,建议修改如下:
SELECT count(1) from famous_video f1,
famous_teacher f2, basic_school f3
where f1.mid = f2.fmid and f2.f_school_id = f3.id
and (f1.status=4 and f1.video_id<>38467
and f1.status<>38468 and f1.status<>701517)
and f2.f_status =1 and f2.f_sys_type =0 and f3.status=1;