Can someone tell me how to append in SQL? I’ve going around all day trying to figure this out. This is what I have so far:
update table1
set field1 = field1 + '123456'
where field2 = '12'
Sorry, I forgot to mention that I’m updating more than one field in the statement.
Your statement should work as long as field1 is not null or the data to be appended is not null.
Something like this could help in the case where field1 is null.