类似于 MySQL 的 DATE_SUB/INTERVAL
在 MySQL 中,以下将告诉您一个月前的日期:
In MySQL the following will tell you what the date was a month ago:
SELECT DATE_SUB(NOW(), INTERVAL 1 MONTH);
SQL 小提琴.
如何在 SQL Server 中做到这一点?
How can this be done in SQL Server?
推荐答案
试试这个
SELECT DATEADD(month, -1, GETDATE());
相关文章