Hoe zit het met dit
UPDATE table SET table_field1 = CONCAT(table_field1,' This will be added.');
BEWERKEN:
Persoonlijk zou ik de manipulatie hebben gedaan met een taal als PHP voordat ik het invoegde. Veel makkelijker. Hoe dan ook, Ok is dit wat je wilt? Dit zou moeten werken op voorwaarde dat uw json-indeling die wordt toegevoegd de indeling {'key':'value'}
heeft
UPDATE table
SET col = CONCAT_WS(",", SUBSTRING(col, 1, CHAR_LENGTH(col) - 1),SUBSTRING('newjson', 2));