Hi, I've got a column full of rows with info. I want to add some info to each row in a certain column, but maintain the existing data.?
Thanks
Assuming the column is character (varchar, etc) just use UPDATE; you can use php or sql to manipulate the strings.
An example:
UPDATE table SET col1 = col1 + ',value2'