一、查询时候建立索引能提高查询速率
二、尽量不要查询全表
三、如果知道字符串具体长度则在建表时候指导
四、应尽量避免在 where 子句中使用 or 来连接条件,否则将导致引擎放弃使用索引而进行全表扫描,如:
select id from t where num=10 or num=20
可以这样查询:
select id from t where num=10
union all
select id from t where num=20
五、 对于连续的数值,能用 between 就不要用 in 了:
select id from t where num between 1 and 3
六、应尽量避免在where子句中对字段进行函数操作,这将导致引擎放弃使用索引而进行全表扫描。
七、select * from t 最好指定具体的字段
八、很多时候用 exists 代替 in 是一个好的选择:
select num from a where num in(select num from b)
用下面的语句替换:
select num from a where exists(select 1 from b where num=a.num)
九、选择分页查询减少一次性查询的数据,数据越多速度越慢
十、避免在where进行null判断
参考:https://blog.csdn.net/qq_38789941/article/details/83744271