So given that every time I look for the SQL query to return the first day of the year I get this..Stackoverflow great answer
SELECT
DATEADD(yy, DATEDIFF(yy,0,getdate()), 0) AS StartOfYear,
DATEADD(yy, DATEDIFF(yy,0,getdate()) + 1, -1) AS EndOfYear
Is there anything wrong with using the below?
SELECT CONVERT(DATE,CONVERT(CHAR(4), Year(Getdate())) + '0101')
Personally I find this one a little easier to immediately understand.
Thanks!