VBScript 处理 sql 值 1900-01-01 00:00:00.000
我有一个我无法弄清楚的问题。我相信这对于专家来说很简单。我有一个 sql 日期时间字段,其中填充了 NULL 值或 1900-01-01 00:00:00.000。我只需要一个 if 语句来检查两者。我尝试过:isNUll、等于null、等于无、等于“”。但他们一直缺少 1900-01-01 00:00:00.000 的值。
If IsNull(MyDate) or MyDate = "" then
'Do Something
end if
谢谢
I have a problem that I cannot figure out. I am sure it si simple for the experts. I have a sql datetime field that is populated with a value of NULL or 1900-01-01 00:00:00.000. I just need an if statment to check for both. I have tried: isNUll, eqaul to null, equal to nothing, equal to "". But they keep missing the value of 1900-01-01 00:00:00.000.
If IsNull(MyDate) or MyDate = "" then
'Do Something
end if
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您只是在寻找#1900-01-01#...
I think you're just looking for #1900-01-01#...