I have a column in my select statement that looks like this:
SELECT CASE WHEN fu.SentOutDate IS NULL THEN '' ELSE fu.SentOutDate END
This returns 1900-01-01 00:00:00.000
for the ones that would otherwise be NULL
I know this because when I put in just fu.SentOutDate
it comes up as NULL
Why does this happen and how can I just get it to return a blank value?