标签: mysql sql database indexing
该查询的最佳MySQL索引如何:
select a,b,c from t where a=1 and b=2 order by c
答案 0 :(得分:2)
最佳索引为:t(a, b, c)或t(b, a, c)。
t(a, b, c)
t(b, a, c)
索引的前两列将用于where子句。然后可以将第三列用于order by。
where
order by