Im trying to update a field by appending data to it. if it contains the data already i wont update it otherwise I will.
if it already contains data i want it to append a comma and space followed by the word. e.g.
update myTable
set Prefixes = convert(nvarchar(max),Prefixes) + ', abc'
where MyCol='xyz' and Prefixes not like '%abc%'
im trying to get this to work so that if the prefixes column is empty initially it only includes the word 'abc'
and not ', abc'
How can i do this?
You need to check for
null
values of Prefixes before filtering asNOT LIKE
in theWHERE
clause as well. Sql-DemoSounds like you need a
CASE
:See SQL Fiddle with Demo