加前缀: update 表名 set 列名 = concat(‘前缀’,列名), 如: update t_table set name = concat(‘abc’, name'), name 列中每个值前面拼接abc

 

加后缀: update 表名 set 列名 = concat(列名,‘后缀’), 如: update t_table set name = concat(name, 'abc'), name 列中每个值后面拼接abc