一條sql為:
select * from user where gender='1' order by id desc;
加索引方式:
1:為gender添加索引
2:為id添加索引
3:為id和gender添加聯(lián)合索引
事實(shí)證明
1是正確的,使用gender索引,這條sql索引級(jí)別達(dá)到const級(jí)別.
如果使用聯(lián)合索引則達(dá)到了index級(jí)別
實(shí)際上運(yùn)行速度,數(shù)據(jù)庫(kù)7w條數(shù)據(jù)情況下,查詢前100條數(shù)據(jù)
1:使用了0.07s
2:使用了0.2+s
因此,1方式的索引速度更快
更多信息請(qǐng)查看IT技術(shù)專欄