gpt4 book ai didi

php - 数据库时间数据检索、基于时间的查询

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

我是时间操纵或时间算术运算的新手目前正在开发一个带有基于 Web 服务器信息的导航系统,目前我有这个数据库,其中包含一个表 peek hours,其列为 id、start_time、end_time、edge_id、day_of_the_week、edge_weight

 ------------------------------------------------------------------------
| Peek Hours |
------------------------------------------------------------------------
| | | | | | |
| id | start_time | end_time | edge_id | day_of_the_week | edge_weight |
| | | | | | |
------------------------------------------------------------------------

我使用 PHP 作为网络服务,因此根据当前时间,我想获取符合此等式的所有记录

start_time< current_time < end_time

最佳答案

正如其他评论所暗示的那样,你看起来并没有很努力。

 SELECT *
FROM peek_hours
WHERE start_time < NOW()
AND NOW() < end_time

您还可以这样做:

 SELECT *
FROM peek_hours
WHERE NOW() between start_time AND end_time

尽管 BETWEEN 是“小于或等于”。

关于php - 数据库时间数据检索、基于时间的查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12874814/

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