MySQl查询具有时间容差

时间:2017-02-15 21:48:45

标签: mysql date time

嗨所以我有一个像这样的查询

SELECT
meteor_events.event_id AS event_id,
meteor_events.user_ID AS user_ID,
meteor_events.date AS date,
meteor_events.Time
from `meteor_events`

给定日期可能有多个事件,即

37775   2   2017-01-01  00:01:23
33500   1   2017-01-01  01:07:56
37776   2   2017-01-01  01:08:45
47827   3   2017-01-01  01:08:30
37777   2   2017-01-03  01:09:44

我想更新查询,以便将记录带回

1 - 日期匹配 和 2 - 时间匹配,但无论如何都要容忍30秒

所以在这个例子中它会返回

37776   2   2017-01-01  01:08:45
47827   3   2017-01-01  01:08:30

我只是不确定要开始吗?

John B

1 个答案:

答案 0 :(得分:1)

如果将数据和时间列合并为一个,则可能更容易。还要避免使用SQL关键字作为列名

你需要一个自我加入的任务:

SELECT a.event_id, a.user_ID, a.`date`, a.`Time`
FROM meteor_events AS a
JOIN meteor_events AS b
WHERE a.event_id != b.event_id
AND a.`date` = b.`date`
AND time_to_sec(a.`Time`) - time_to_sec(b.`Time`) BETWEEN -30 AND 30;

enter image description here