I want to select top 1 value either null or value from this query
select top 1 column5 from table2 where table2.column1ID = 5
if the whole value of this column is null the return is empty , but I need to return value or null
I want to select top 1 value either null or value from this query
select top 1 column5 from table2 where table2.column1ID = 5
if the whole value of this column is null the return is empty , but I need to return value or null