I need to "add" data to a field that already contains data without erasing whats currently there. For example if the field contains HTML, I need to add additional HTML to the field. Is there a SQL call that will do this or do I need to call the data in that field, concatenate the new data to the existing data, and reload it into the database?
UPDATE Table SET Field=CONCAT(Field,'your extra html');
1.4m articles
1.4m replys
5 comments
57.0k users