explain select * from user where id =1 or id = 2
explain select id from user where id =1 or id = 2
不是说用or会导致索引失效吗?为什么type不是all
而且select * 的时候 type是range
select id 的时候,type是index,比 select * 级别还低?但是extra却显示using index?
慕设计2395807
相关分类