84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
1.where条件为 a > 5 AND a < 8 AND b = 1的时候怎么建索引?
2.where条件为 a IN ('6','7') AND b = 1 的时候怎么建索引?
补充一个问题,如果这样建立了索引index(a,b)
还有一个查询叫 WHERE a = ? AND c =?
还需要另外建立一个index(a,c)吗?
闭关修行中......
index(a,b)用复合索引IN 是可以走索引的如果有疑问,自己模拟建表加数据,SELECT之前加explain,查看是否走索引
index(a,b)
SELECT
explain
index(a,b)
用复合索引IN 是可以走索引的
如果有疑问,自己模拟建表加数据,
SELECT
之前加explain
,查看是否走索引