I like to replace a 'NULL' value in FG_NFG_Selektion column but only in those row where Plant='935S'
Tried:
UPDATE [Table] SET [FG_NFG_Selektion] = REPLACE([FG_NFG_Selektion], 'NULL', 'FG') WHERE [Plant] = '935S'
Message back: 10000 rows affected but still the same 'NULL' is there in the table.
