继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

关于sql的优化建议,提高运行效率

醉清风tomorrow
关注TA
已关注
手记 1
粉丝 31
获赞 37

1、尽量不要使用 or,否则会降低查询效率,因为or会引起全表扫描。
2、避免使用“select *”,尽量使用“select 字段1,字段2,字段3........”。
3、避免使用 != 或 <> 等这样的操作符,因为它会使系统无法使用索引,而只能直接搜索表中的数据。
4、用 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)。
5、避免在 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

打开App,阅读手记
14人推荐
发表评论
随时随地看视频慕课网APP