吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1814|回复: 18
收起左侧

[求助] sql优化

[复制链接]
ppgjx 发表于 2022-2-23 21:28
select * from px_user_wallpaper_info where state in ( 3 , 1 , 2 , 4 , 6 ) and wp_id in (select wp_id from px_user_wallpaper_class_relation_info where  class_id not in("12","1"))
这条语句该如何优化呢

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

banboo02 发表于 2022-2-23 21:36
如果有权限建临时表  强烈建议走临时表
projectD 发表于 2022-2-23 21:55
select * from px_user_wallpaper_info a
LEFT JOIN (select wp_id from px_user_wallpaper_class_relation_info where  class_id not in("12","1")) b
ON a.wp_id = b.wp_id
where state in ( 3 , 1 , 2 , 4 , 6 );
wp_id 建索引
小可爱~ 发表于 2022-2-24 01:16
projectD 发表于 2022-2-23 21:55
select * from px_user_wallpaper_info a
LEFT JOIN (select wp_id from px_user_wallpaper_class_relatio ...

我咋感觉, 你写的和他的效率差不多???
243634473 发表于 2022-2-24 08:39
select * from px_user_wallpaper_info p where p.state in ( 3 , 1 , 2 , 4 , 6 ) and
                                           exists(select 1 from px_user_wallpaper_class_relation_info a where  a.class_id not in("12","1") and a.wp_id = p.wp_id )
rund11 发表于 2022-2-24 08:42
看你这两个表的数据量、索引。state  in ( 3 , 1 , 2 , 4 , 6 )要改成用(state = 3 or state  =2 or state =1),不要用in,in不命中索引,会慢的
后边的class_id not in("12","1")也要改成=
神幻静 发表于 2022-2-24 09:09
使用explain 分析一下sql,一般情况下达到ref 或range都可以接受,条件尽量都覆盖索引
cheny12120 发表于 2022-2-24 09:33
我就是进来学习的,你们继续,不用管我
ygh0309 发表于 2022-2-24 09:33
projectD 发表于 2022-2-23 21:55
select * from px_user_wallpaper_info a
LEFT JOIN (select wp_id from px_user_wallpaper_class_relatio ...

是不是应该 select a.*  
qiujw 发表于 2022-2-24 09:54
过来看看看而已,不用理我
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 16:42

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表