导航

SQL优化

Posted on 2015-09-12 21:21  ggzone  阅读(109)  评论(0编辑  收藏  举报
  1. 应尽量避免在 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
  2. 列表内容