part02→直通车part01→直通车21、尽量用unionall替换union如果检索结果中不会有重复的记录,推荐unionall替换union。反例:select * from user where userid=1 union select&...
MySQL常见的SQL优化(思维导图)...
part02→直通车part03→直通车1、查询SQL尽量不要使用select*,而是select具体字段反例子:select * from employee;正例子:select id,name from employee;理由如下:只取需要的字段,节省资源、减少网络开销。sele...