Cytat
CONCAT(str1,str2,...)
Returns the string that results from concatenating the arguments. Returns NULL if any argument is NULL. May have more than 2 arguments. A numeric argument is converted to the equivalent string form:
mysql> SELECT CONCAT('My', 'S', 'QL');
-> 'MySQL'
mysql> SELECT CONCAT('My', NULL, 'QL');
-> NULL
mysql> SELECT CONCAT(14.3);
-> '14.3'
Więc myślę, że jeśli nie zadziała
Kod
UPDATE tabela SET tekst = text + co_dodac ....
to powinno pomoc
Kod
UPDATE tabela SET tekst = CONCAT(text, co_dodac) ....