complete date is 1 year or not sql server

Solutions on MaxInterview for complete date is 1 year or not sql server by the best coders in the world

showing results for - "complete date is 1 year or not sql server"
Adem
07 Jun 2018
1SELECT
2   DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0) AS StartOfYear,
3   DATEADD(yy, DATEDIFF(yy, 0, GETDATE()) + 1, -1) AS EndOfYear
4
similar questions
queries leading to this page
complete date is 1 year or not sql server