I would like to select the current year from the system and append '02/01' to it. I coded: SELECT CAST('02/01/' + YEAR(GETDATE()) as date) but it throws the error message:
Explicit conversion from data type int to date is not allowed.
Any help would be appreciated.