向一个表中的一个text字段追加一段字符串

UPDATE table_name SET name = CONCAT(forename, ‘ ‘, surname)

即:update testtable set text = CONCAT(text,”,’added’);即可。