gpt4 book ai didi

mysql - 如何在日期和空值之间查询?

转载 作者:行者123 更新时间:2023-11-30 22:31:57 24 4
gpt4 key购买 nike

Select area, book, sequence, accountnumber, name, address, polenumber from master
where newconnectiondate is null
and newconnectiondate between '1950-01-01' and '2015-10-31'

这是我在 mysql 中的查询。但都做错了。我想使用日期之间查询数据,但它不查询具有空日期的数据,现在我想在日期之间和空日期之间查询

最佳答案

我认为 taht 和 弄乱了你的结果。我认为您需要检查日期之间的 newconnectiondate 是否为 null OR。像这样:

where 
(newconnectiondate IS NULL)
OR
(newconnectiondate between '1950-01-01' and '2015-10-31')

关于mysql - 如何在日期和空值之间查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33646171/

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