如何检查指定时间是否存在当前时间?我在下面声明,所以说我想要9:30到10:30,它将不起作用,如果是9:30到10,这将起作用,但是9:30到10:30则不起作用。
我该怎么做?
if datepart(hour, CURRENT_TIMESTAMP) BETWEEN
(9) and (10) and
datepart(minute, CURRENT_TIMESTAMP) BETWEEN
(30) and (30)
答案 0 :(得分:1)
只需使用时间:
where convert(time, current_timestamp) between '09:30:00' and '10:30:00'