SQL找出2个日期时间列之间的小时数

时间:2013-12-05 07:47:13

标签: mysql sql datetime select

如果我的时间栏中有2个时间段的差异超过15小时,是否可以给出条件。

colTime1

中给出colTime2table
SELECT * FROM table WHERE time between colTime1 and colTime 2 is difference for over 15 hours

1 个答案:

答案 0 :(得分:1)

试试这个:确保你的日期格式也包括时间,其他方面这个天数的回报差异

DATEDIFF(hour, date1 ,date2);

DATEDIFF(date1 ,date2);