sybase 检查日期时间是否在规定时间内
我有一个以日期时间为数据类型的列
,我需要检查该日期时间列是否在下午 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将日期时间设置为该日期的午夜,然后使用 datediff() 获取两者之间经过的时间。
Floor your datetime to midnight of that date, Then use datediff() to get the elapsed time between the two.