A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

a. 应尽量避免在 where 子句中使用!=或<>操作符,否则将引擎放弃使用索引而进行全表扫描。
b. 应尽量避免在 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
c. in 和 not in 也要慎用,否则会导致全表扫描,如: select id from t where num in(1,2,3) 对于连续的
数值,能用 between 就不要用 in 了: select id from t where num between 1 and 3

3 个回复

倒序浏览
占座00000000000000
回复 使用道具 举报
1111111111111111111111111
回复 使用道具 举报
22222222222222222222
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马