Answers for "update date in sql server table with 3 months ago date"

SQL
0

date 3 months from today sql

SELECT * FROM MyTable
WHERE MyDate < DATEADD(month, -2, GETDATE())
Posted by: Guest on August-17-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language