SQL UPDATE all values in a field with appended string CONCAT not working
That’s pretty much all you need: mysql> select * from t; +——+——-+ | id | data | +——+——-+ | 1 | max | | 2 | linda | | 3 | sam | | 4 | henry | +——+——-+ 4 rows in set (0.02 sec) mysql> update t set data=concat(data, ‘a’); Query OK, 4 rows … Read more