我们可以像这样运行带有 where 子句的 mysql 查询
TIME_TO_SEC(TIMEDIFF('2012-08-22 06:25:12',lastEventTime)) >70
我们现在需要检查的是尝试放置 =null 但未显示的空值?需要什么?
示例查询如下,谢谢它的工作。我的下一个问题现在必须索引 lastEvenTime 列吗?
SELECT
tblTimeLog.timeLogID,
TIME_TO_SEC(TIMEDIFF('2012-08-22 06:25:12',lastEventTime)) As timeDifference
FROM tblTimeLog
WHERE tblTimeLog.timeID = 2209
And (TIME_TO_SEC(TIMEDIFF('2012-08-22 06:25:12',lastEventTime)) IS NULL
OR TIME_TO_SEC(TIMEDIFF('2012-08-22 06:25:12',lastEventTime)) > 100)