我正在用以下查询查询数据库.
该查询需要21秒才能执行.
我已经通过解释查询进行了检查.
我分别在字段groupId和batchId上具有索引.
EXPLAIN SELECT message,sentOn,maskId,isDndCheck,contentType
FROM sms_histories
WHERE groupId = 1750
GROUP BY batchId
ORDER BY batchId DESC
LIMIT 0,1
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE sms_histories index groupId batchId 5 NULL 888 Using where
请告诉我问题是什么,为什么这个查询需要这么长时间?
最佳答案
原文链接:https://www.f2er.com/mysql/532163.html