如果在 sql 中为 NULL,则设置值 - Access 2007
是否可以将值设置为 NULL?
我现在使用的sql是这样的:
SELECT date
FROM Activity
WHERE date BETWEEN [Forms]![Search]![fromDate] AND [Forms]![Search]![toDate]
但问题是当fromDate
或toDate
没有值时,结果是零行。所以我想做的是当 fromDate
为 NULL
时,将 fromDate
值更改为 1800-01-01
当toDate
为NULL
时,将其更改为2300-01-01
。
Is it possible to set a value to values who is NULL?
The sql I use now is this:
SELECT date
FROM Activity
WHERE date BETWEEN [Forms]![Search]![fromDate] AND [Forms]![Search]![toDate]
But the problem is when there is no value for fromDate
or toDate
the result is zero rows. So what I want to do is when fromDate
is NULL
, change the fromDate
value to 1800-01-01
and when toDate
is NULL
, change it to 2300-01-01
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用 NZ 函数
NZ 链接
You should be able to use the NZ function
NZ link
试试这个:
Try this: