Answers for "date 3 months from today sql"

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