哪些字段应编入索引以加快以下查询?
SELECT *
FROM sms_report
WHERE R_uid = '159'
AND R_show = '1'
ORDER BY R_timestamp DESC , R_numbers
答案 0 :(得分:3)
基于这些信息,(R_uid,R_show)的综合指数应该是好的。
http://dev.mysql.com/doc/refman/5.5/en/multiple-column-indexes.html
为了能够说出更多信息,您需要向我们展示EXPLAIN的结果
http://dev.mysql.com/doc/refman/5.5/en/explain.html
并告诉您正在使用哪个存储引擎。