gpt4 book ai didi

Mysql查找两列[Start_Date]和[End_date]之间的日期

转载 作者:行者123 更新时间:2023-11-29 23:55:07 24 4
gpt4 key购买 nike

我的 table 是这样的

|id|start_time|end_time|start_date|end_date  |
|01| 10:00Am | 10:PM |2014-08-19|2014-08-30|

我想在 start_date 和 end_date 两列之间找到我的具体日期

select start_time,end_time
from table
where 2014-08-24 <= end_date and >= start_date

如何找到我的具体日期

最佳答案

您应该在db行中使用date,尝试这种方式

SELECT `start_time`, `end_time`
FROM `table`
WHERE `start_date` <= "2014-08-24" AND `end_date` >= "2014-08-24"

关于Mysql查找两列[Start_Date]和[End_date]之间的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25422702/

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