WHERE 日期时间早于某个时间(例如 15 分钟)

2021-11-20 00:00:00 mysql

我在看:

MySQL 选择时间戳所在的行从现在到 10 分钟前的专栏

我有一个名为 creation_date 的 col 持有日期时间戳:2013-09-10 11:06:42

I have a col named creation_date holding a datetime stamp: 2013-09-10 11:06:42

我想使用以下方法提取所有超过 15 分钟的记录:

I would like to pull all records that are OLDER than 15 minutes using:

WHERE creation_date >= DATE_SUB(NOW(),INTERVAL 15 MINUTE)

然而,查询总是返回 0 个结果,即使数据库中存在超过 15 分钟的项目.

However the query always returns 0 results, even with items older then 15 minutes present in the database.

推荐答案

旧将 WHERE creation_date

DATE_SUB(NOW(),INTERVAL 15 MINUTE)

相关文章