标签: sql
在sql查询中使用Stream时遇到问题。
Stream
查询:
getdate()
错误:
select * from table where date_col < GETDATE()- 23;
请你帮我解决这个问题。
提前致谢。
答案 0 :(得分:0)
我想你想做这样的事情
SELECT * FROM table WHERE date_col < DATEADD(DAY, -23, GETDATE());