或许你不知道的12条SQL技巧
2020-03-27 11:04:18
select * from order where status!=0 and
stauts!=1select * from order where status in(2,3)select * from order where desc like '%XX'select * from order where desc like 'XX%'select * from user where sex=1原因:性别只有男,女,每次过滤掉的数据很少,不宜使用索引。经验上,能过滤80%数据时就可以使用索引。对于订单状态,如果状态值很少,不宜使用索引,如果状态值很多,能够过滤大量数据,则应该建立索引。select * from order where YEAR(date) <
= '2020'即使date上建立了索引,也会全表扫描,可优化为值计算:select * from order where date < =
CURDATE()select * from order where date < = '2020-01-01'(5)如果业务大部分是单条查询,使用Hash索引性能更好,例如用户中心。select * from user where uid=?select * from user where
login_name=?B-Tree索引的时间复杂度是O(log(n));单列索引不存null值,复合索引不存全为null的值,如果列允许为null,可能会得到“不符合预期”的结果集。select * from user where name != 'shenjian'如果name允许为null,索引不存储null值,结果集中不会包含这些记录。(7)复合索引左前缀,并不是指SQL语句的where顺序要和复合索引一致。用户中心建立了(login_name, passwd)的复合索引select * from user where login_name=? and
passwd=?select * from user where passwd=? and login_name=?select * from user where login_name=?select * from user where passwd=?ENUM保存的是TINYINT,别在枚举中搞一些“中国”“北京”“技术部”这样的字符串,字符串空间又大,效率又低。(9)如果明确知道只有一条结果返回,limit 1能够提高效率。select * from user where login_name=?select * from user where login_name=? limit
1你知道只有一条结果,但数据库并不知道,明确告诉它,让它主动停止游标移动。(10)把计算放到业务层而不是数据库层,除了节省数据的CPU,还有意想不到的查询缓存优化效果。select * from order where date < =
CURDATE()$curDate = date('Y-m-d'); 'select * from order
where date < = $curDate'原因:释放了数据库的CPU。多次调用,传入的SQL相同,才可以利用查询缓存。select * from user where phone=13800001234末了,再加一条,不要使用select *(潜台词,文章的SQL都不合格 =_=),只返回需要的列,能够大大的节省数据传输量,与数据库的内存使用量哟。