如何在sql中使用getdate()函数

时间:2017-03-22 09:34:31

标签: sql

在sql查询中使用Stream时遇到问题。

查询:

getdate()

错误:

select * from table where date_col < GETDATE()- 23;

请你帮我解决这个问题。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我想你想做这样的事情

SELECT * FROM table WHERE date_col < DATEADD(DAY, -23, GETDATE());