gpt4 book ai didi

MySQL DateTime 选择间隔

转载 作者:行者123 更新时间:2023-11-29 16:19:51 25 4
gpt4 key购买 nike

我正在尝试从日期时间字段早于 15 分钟的表中进行选择。直到午夜过后,查询似乎都运行良好。不知道如何让 MySQL 区分 AM 和 PM。任何朝着正确方向的帮助都会有所帮助。

示例:

Current time: 11:50 (AM)

last_successful_run: 12:02 (AM)

This should be selected b/c 12:02 (AM) is over 15 older than 11:50 (am)

Insert in the format "yyyy-MM-dd hh:mm:ss"

last_successful_run 的类型为 DATETIME 默认/表达式 = NULL

ID |  last_successful_run
1 | 2019-02-07 12:06:37
2 | 2019-02-07 12:05:15
3 | 2019-02-07 12:00:12
4 | 2019-02-07 12:10:37

选择查询

SELECT `ID`
FROM reports.tests
WHERE `last_successful_run` < DATE_SUB(NOW(), INTERVAL 15 MINUTE)

最佳答案

一种可能是您正在根据本地计算机时间检查它,而 MySQL 安装在另一台具有不同时间的计算机上。

关于MySQL DateTime 选择间隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54578587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com