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
UPDATE myTable SET html=concat(html,'More HTML') WHERE id='10'
... for example. Your WHERE would be different of course.