有了这个查询
SELECT
o1.created,
SEC_TO_TIME(TIMESTAMPDIFF(second, o1.created, (SELECT MAX(created) FROM orders o2 WHERE o2.created < o1.created and o2.created >= '2012-06-01'))) tsd
FROM
orders o1
WHERE o1.created >= '2012-06-01'
ORDER BY tsd DESC LIMIT 100
我想知道是否有任何重要的时间没有下订单,以及这个时间跨度有多长。
下面是解释:
*************************** 1. row ***************************
id: 1
select_type: PRIMARY
table: o1
type: range
possible_keys: created
key: created
key_len: 4
ref: NULL
rows: 2649278
Extra: Using where; Using index; Using filesort
*************************** 2. row ***************************
id: 2
select_type: DEPENDENT SUBQUERY
table: o2
type: range
possible_keys: created
key: created
key_len: 4
ref: NULL
rows: 2649278
Extra: Using where; Using index
created
是类型timestamp
。
查询现在运行了一个多小时。更改架构中的任何内容都不是一种选择。这是一次性查询,但我只是好奇是否可以提高性能。