Mega Code Archive
Categories
/
MSSQL
/
Date Timezone
Find out the month name in two months time
2> -- Find out the month name in two months time: 3> 4> SELECT DATENAME(mm,DATEADD(mm,2,GETDATE())) 5> GO ------------------------------ December (1 rows affected) 1>