If you’re getting error message “Msg 206” that reads “Operand type clash: date is incompatible with int” in SQL Server while trying to add to (or subtract from) a date, it’s probably because you’re trying to perform arithmetic between an integer
and a date
value.
To fix this issue, either change the date
value to a datetime
value or use the DATEADD()
function.