gpt4 book ai didi

mysql - 检查给定日期存在于 MySQL 中的 2 个日期字段之间

转载 作者:行者123 更新时间:2023-12-01 00:14:05 24 4
gpt4 key购买 nike

我有一个包含 2 个日期字段的表。喜欢:

id      from             to
--- ---- --
1 2012-01-01 2012-01-05
2 2012-01-04 2012-01-10
3 2012-01-03 2012-01-07

我想使用一个日期(例如:2012-01-06)来检查该日期是否介于表格中的任何日期(从、到)之间。

对于这种情况,我想获得 id - 2,3。我该怎么做?

最佳答案

SELECT * FROM table WHERE "2012-01-06" BETWEEN `from` and `to`

SELECT * FROM table WHERE `from` <= "2012-01-06" AND "2012-01-06" <= `to`

http://dev.mysql.com/doc/refman/5.5/en/comparison-operators.html

关于mysql - 检查给定日期存在于 MySQL 中的 2 个日期字段之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9000576/

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