Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come ottenere il primo e l'ultimo giorno del mese precedente (con timestamp) in SQL Server

select DATEADD(MONTH, DATEDIFF(MONTH, 0, GETDATE())-1, 0) --First day of previous month
select DATEADD(MONTH, DATEDIFF(MONTH, -1, GETDATE())-1, -1) --Last Day of previous month