VBScript 处理 sql 值 1900-01-01 00:00:00.000

发布于 2024-11-03 18:47:10 字数 269 浏览 1 评论 0原文

我有一个我无法弄清楚的问题。我相信这对于专家来说很简单。我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

脱离于你 2024-11-10 18:47:10

我认为您只是在寻找#1900-01-01#...

If IsNull(MyDate) or MyDate = "" or MyDate = #1900-01-01# Then
   'Do Something
End If

I think you're just looking for #1900-01-01#...

If IsNull(MyDate) or MyDate = "" or MyDate = #1900-01-01# Then
   'Do Something
End If
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文