I have a simple sql statement which i use to populate a selection list in a webpage. The SQL statement returns a NULL too which i dont want to show up in the selection box. So I want that Null value to be replaced by any text string . lets use "blank" for now
case when (vFL_CRPCustomerReference.iStatusSubTypeId) is NULL
then 'Blank'
else (vFL_CRPCustomerReference.iStatusSubTypeId)
end As SubStatusId,
SQL throws back the following error.
Syntax error converting the varchar value 'Blank' to a column of data type int.
How do I typecast it ?
[highlight]M.Bajwa
[/highlight]
case when (vFL_CRPCustomerReference.iStatusSubTypeId) is NULL
then 'Blank'
else (vFL_CRPCustomerReference.iStatusSubTypeId)
end As SubStatusId,
SQL throws back the following error.
Syntax error converting the varchar value 'Blank' to a column of data type int.
How do I typecast it ?
[highlight]M.Bajwa
[/highlight]