gpt4 book ai didi

MYSQL - 在时间范围之间选择

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

我想选择 start_timeend_time 之间的所有行。我目前有这个疑问。它工作正常,但一些记录仍然存在,尽管它不在指示的时间范围内:

结构:

enter image description here

查询:

SELECT * FROM `tbl_subloading` 
WHERE`start_time` >= '08:00AM' and `end_time`<= '09:00AM';

输出:

enter image description here

各位,问题出在哪里?

最佳答案

找到了一种方法来消除不必要的时间。不知道这是否是一种有效的方法,但由于它满足了我的要求,我认为这一切都很好。

SELECT * FROM `tbl_subloading` 
WHERE `start_time` BETWEEN '08:00AM' and '09:00PM'
and `end_time` BETWEEN '08:00AM' and '09:00PM'

关于MYSQL - 在时间范围之间选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46461167/

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