SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)) LastDay_CurrentMonth
Hi everyone I have a query to find the last day of current mont
This will give you the last day of current month but ignores time
select EOMONTH(GETDATE())
From Microsoft tech net