I am trying to replace a column with a new varchar
string if there is null values in it in a select statement:
(personid + ISNULL(personid, 'no person'))
I'm not trying to update it, only show the value as 'no person' in the query result.
But I am getting an error saying:
the conversion failed when converting the varchar value to a data type int.
How do I get past this?