mysql 更新某个字段(在某个字段的前面或后面追加字符串)。
例如: 有个 user 表,现在需要将该表的 username 字段值后面都追加上 _phpernote 字符,则可以:
UPDATE user SET username=CONCAT(username,'_phpernote');