日期:2014-05-16  浏览次数:20756 次

mysql concat追加字符串
后追加

update 表名 set 字段名 = concat(字段名,"string")


前追加
update 表名 set 字段名 = concat("string",字段名)