Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySQLでは、次のように1か月前の日付がわかります。
SELECT DATE_SUB(NOW(), INTERVAL 1 MONTH);
SQLフィドル。
これはSQLServerでどのように実行できますか?
これを試して
SELECT DATEADD(month, -1, GETDATE());