If col1 is null...
this statement doesn;t seem to work.
update table set col1=col1 +'-VAR' where id=idNumber. Alway return Null value.
this will work
update table set col1=isnull(col1,'')+'-VAR' where id=idNumber
Can anyone explain this? I'm using sql 2000.