Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Aggiorna e aggiungi a meno che non sia vuoto

Sembra che tu abbia bisogno di un CASE :

update myTable 
set  Prefixes = 
           case 
               when Prefixes is null or Prefixes = ''
               then 'abc'
               else convert(nvarchar(max),Prefixes) + ', abc' 
            end
where MyCol='xyz' and (Prefixes not like '%abc%' or Prefixes is null)

Vedi SQL Fiddle con demo