I am trying to convert a NULL date to a Y/N flag. It is giving me a conversion error. Here is the code. Any help is appreciated. Thanks
'CommitDateTime Flag' = (case when CommitDateTime IS NULL then 'Y'
else 'N'
end)
'CommitDateTime Flag' = (case when CommitDateTime IS NULL then 'Y'
else 'N'
end)
Comment