有两个列, status(5 中状态), create_time
查询的时候 select * from - where status=1 and create_time > '-';
因为 status = 1 的记录比较少,所以想 status 在前(这样直接选出几天记录然后在筛选), 但是书上说应该给选择性多的列建立索引, 像性别这种就不适合.
请问, 索引顺序是 status 在前好, 还是 create_time 在前好?
1
mm163 2017-09-08 15:59:43 +08:00
create_time 建索引,查询的时候 create_time 在前。
status 建索引没意义。 |