该查询在 MySQL 中的有效语法是什么?
Which is the valid syntax of this query in MySQL?
SELECT * FROM courses WHERE (now() + 2 hours) > start_time
注意:start_time 是课程表的一个字段
SELECT *
FROM courses
WHERE DATE_ADD(NOW(), INTERVAL 2 HOUR) > start_time
参见日期和时间函数 用于其他日期/时间操作.
See Date and Time Functions for other date/time manipulation.
这篇关于在 MySQL 中将当前时间添加 2 小时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!