摘要: 应尽量避免在 where 子句中使用 or 来连接条件,否则将导致引擎放弃使用索引而进行全表扫描,如: select id from t where num=10 or num=20 可以这样查询: select id from t where num=10union allselect id fr 阅读全文
posted @ 2020-11-19 16:51 乌柒柒 阅读(60) 评论(0) 推荐(0) 编辑