mysql中concat函数,mysql在字段前/后增加字符串

mysql向表中某字段后追加一段字符串:

update table_name set field=CONCAT(field,'',str);

mysql 向表中某字段前加字符串:

update table_name set field=CONCAT('str',field);

  

原文地址:https://www.cnblogs.com/whist/p/8611096.html