简单查询但速度慢

时间:2014-11-12 17:18:08

标签: mysql performance optimization

我在Mysql中有以下查询速度很慢。我在表price_all中有date,close,sec的索引。 price_all表中有超过100,000,000行。

SELECT date, close FROM `price_all` where sec=? AND date>? order by date

EXPLAIN输出

enter image description here

1 个答案:

答案 0 :(得分:-1)

日期排序很慢。试试

SELECT UNIX_TIMESTAMP(date), date, close FROM `price_all` where sec=? AND date>? order by 1