sybase 检查日期时间是否在规定时间内

发布于 2024-12-08 15:24:05 字数 154 浏览 0 评论 0原文

我有一个以日期时间为数据类型的列

,我需要检查该日期时间列是否在下午 2:30 到下午 3 点之间,“忽略”

我在 sql server 中看到的一个示例,该示例将日期时间转换为浮点数,但这在sybase...

有人知道吗,

谢谢

I have a column with datetime as the data type

I need to check if that datetime column is between 2:30pm to 3pm, "ignoring" the date

I saw an example in sql server that cast the datetime to float but that did not work in sybase...

does anyone have any idea

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

似狗非友 2024-12-15 15:24:05

将日期时间设置为该日期的午夜,然后使用 datediff() 获取两者之间经过的时间。

DECLARE @dt DATETIME

SET @dt='10/06/2011 2:37:17.390PM'

SELECT 
    CASE
        WHEN DATEDIFF(ms,CONVERT(DATETIME,CONVERT(DATE,@dt)),@dt) BETWEEN 52200000 AND 54000000
        THEN 1
        ELSE 0
    END 

Floor your datetime to midnight of that date, Then use datediff() to get the elapsed time between the two.

DECLARE @dt DATETIME

SET @dt='10/06/2011 2:37:17.390PM'

SELECT 
    CASE
        WHEN DATEDIFF(ms,CONVERT(DATETIME,CONVERT(DATE,@dt)),@dt) BETWEEN 52200000 AND 54000000
        THEN 1
        ELSE 0
    END 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文