mysql查詢表的索引,mysql普通索引怎么生效?
假設(shè)index(a,b,c) 最左前綴匹配:模糊查詢時(shí),使用%匹配時(shí):’a%‘會(huì)使用索引,’%a‘不會(huì)使用索引 條件中有or,索引不會(huì)生效 a and c,a生效,c不生效 b and c,都不生效 a and b > 5 and c,a和b生效,c不生效。
假設(shè)index(a,b,c) 最左前綴匹配:模糊查詢時(shí),使用%匹配時(shí):’a%‘會(huì)使用索引,’%a‘不會(huì)使用索引 條件中有or,索引不會(huì)生效 a and c,a生效,c不生效 b and c,都不生效 a and b > 5 and c,a和b生效,c不生效。