加前缀:update 表名 set 列名=CONCAT(‘要加内容’,列名); 加后缀:update 表名 set 列名=CONCAT(列名, ‘要加内容’ ); 例子: UPDATE stu SET tel=CONCAT('dh',tel) ;