数据库表数据量小的时候,sql语句影响性能可能没那么明显。一旦数据量增大,sql语句是影响程序运行性能的一个重要因素。所以sql优化就变得极为重要了。
-
标题 给表建索引,按照索引查询,提升查询效率。表就像一本书,索引就像是目录一样的存在,方便查找。索引就是通过事先排好额顺序,从而在查找时可以应用二分查找或者其他的高效率的算法,一般的顺序查找,复杂度为O(n),而二分查找复杂度为O(log2n)。当n很大时,二者的效率相差及其悬殊。
-
避免扫全表,数据量大,扫全表无疑是作死的操作。以下为会触发扫全表的场景:
- where后条件判断为空 e.g select * from student where code=null
这种情况 最好是在建表的时候就给code赋默认值比如0,sql可改写为
select * from student where code=0 - 模糊查询 e.g
select * from student where name like ‘%name%’(like ‘%name’)
模糊查询分为 左模糊查 和 右模糊差 和 全查 。左和全查回查全表,右 模糊查走索引。 - in¬ in e.g select * from student where code in (2,3,4,5)
in 和 not in 可用between代替。或者exsits、not exsits - or e.g select * from student where code =1 or code =2
or可以用union all代替 注意union all(可重复)和union(去重)的区别 (无特定需求 尽量用union all代替union) - count() e.g select count() from student
count(*)可以用count(1)代替 - where子句 操作字段 e.g select * from student where code/2=2
- != 和 <> e.g select * from student where code!=2 (code<>2)
- where子句 函数操作
e.g select id from student where substring(name,1,3)=‘abc’
- where后条件判断为空 e.g select * from student where code=null
-
避免用*号 e.g select * from student 最好写明白字段名
-
当只需要一条数据的时候,使用limit 1
先更新到这里啦~