简单的sql优化

  1. 避免where中出现or

select id from table where num=10 or num=20
select id from table where num=10
union all
select id from table where num=20

  1. 查询时避免使用in和not in

连续数值
select id from table where num in(1,2,3)
select id from table where num between 1 and 3

  1. 应尽量避免在where子句中对字段进行函数操作,这将导致引擎放弃使用索引而进行全表扫描

select id from table where substring(name,1,3)=‘abc’
select id from table where name like ‘abc%’

  1. 用 exists 代替 in

select num from table where num in(select num from table1 )
select num from table where exists(select 1 from table1 where num=a.num)

  1. union all和union

union: 对两个结果集进行并集操作bai, 不包括重复行,相当于dudistinct, 同时进行默认规则的排序。会对获取的结果进行排序操作
union all: 对两个结果集进行并集操作, 包括重复行, 即所有的结果全部显示, 不管是不是重复。不会对获取的结果进行排序操作

  1. 不要使用 select * from table,用具体的字段列表代替“*”,不要返回用不到的任何字段
  2. inner join(内连接)、left join(左连接)、right join(右连接)、full join(全连接)

inner join:在两张表进行连接查询时,只保留两张表中完全匹配的结果集
left join:在两张表进行连接查询时,会返回左表所有的行,即使在右表中没有匹配的记录
right join:在两张表进行连接查询时,会返回右表所有的行,即使在左表中没有匹配的记录
full join:在两张表进行连接查询时,返回左表和右表中所有没有匹配的行。

  1. 尽量避免开头模糊查询

select * from table where name like ‘%张%’
select * from table where name like ‘张%’

  1. 尽量避免使用null判断

select * from table where ager is null
select * from table where ager = 0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值