SQL调优总结

本文总结了SQL查询优化的关键点,包括避免开头模糊查询、慎用in和notin、替换or关键字、保持索引有效性和遵循最左匹配原则。通过这些方法,可以显著提升SQL查询效率,减少全表扫描,确保索引被有效利用。
摘要由CSDN通过智能技术生成

SQL 调优总结

  1. 避免开头模糊查询, 例如:
select * from t where username like '%陈%';
  1. 避免使用in 和 not in,会导致引擎扫描全部表数据, 如果数据连续,尽量使用 between关键字, 如果是子查询, 可以使用exist关键字, 例如:
-- 不走索引
select * from A where A.id in (select id from B);
-- 走索引
select * from A where exists (select * from B where B.id = A.id);
  1. 避免使用or关键字, 会导致数据库引擎放弃索引,进行全表扫描, 例如:
select * from A where A.id = 10 or A.id = 3;
-- 优化方式: 可以使用 union关键字代替or关键字
select * from A where id =10
    union
select * from A where id = 3;
  1. 避免在where关键字等号左边进行表达式, 函数运算, 会导致数据库引擎扫描全部表数据, 例如:
-- 不走索引, 全表扫描
select * from A where score / 10 = 5;
-- 走索引
select * from A where score = 10*5;
  1. 当索引列作为查询条件时, 避免使用!=条件符号,会导致引擎扫描全部表数据.
  2. where 条件复合索引需要满足最左匹配原则, 例如:
-- 表A中联合索引<c1, c2, c3>
-- 走索引情况:
select * from A where c1=1 and c2=2 and c3=3;
select * from A where c1=1 and c2=2;
select * from A where c1=1;
-- 不走索引情况
select * from A where c1=1 and c3=3;
select * from A where c2=1 and c3=3;
select * from A where c3=3;
  1. order by要与where条件一致, 这种优化方式同样对于group by, union, distinct有效.
-- 不走age索引
select * from t order by age;
-- 走age索引
select * from t where age > 0 order by age;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值