- 避免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
- 查询时避免使用in和not in
连续数值
select id from table where num in(1,2,3)
select id from table where num between 1 and 3
- 应尽量避免在where子句中对字段进行函数操作,这将导致引擎放弃使用索引而进行全表扫描
select id from table where substring(name,1,3)=‘abc’
select id from table where name like ‘abc%’
- 用 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)
- union all和union
union: 对两个结果集进行并集操作bai, 不包括重复行,相当于dudistinct, 同时进行默认规则的排序。会对获取的结果进行排序操作
union all: 对两个结果集进行并集操作, 包括重复行, 即所有的结果全部显示, 不管是不是重复。不会对获取的结果进行排序操作
- 不要使用 select * from table,用具体的字段列表代替“*”,不要返回用不到的任何字段
- inner join(内连接)、left join(左连接)、right join(右连接)、full join(全连接)
inner join:在两张表进行连接查询时,只保留两张表中完全匹配的结果集
left join:在两张表进行连接查询时,会返回左表所有的行,即使在右表中没有匹配的记录
right join:在两张表进行连接查询时,会返回右表所有的行,即使在左表中没有匹配的记录
full join:在两张表进行连接查询时,返回左表和右表中所有没有匹配的行。
- 尽量避免开头模糊查询
select * from table where name like ‘%张%’
select * from table where name like ‘张%’
- 尽量避免使用null判断
select * from table where ager is null
select * from table where ager = 0