应该是
update table set field=concat_ws(' ', field, '072110003') where field='072110001'
或者
update table set field=concat(field, ' ', '072110003') where field='072110001'
对于需要一次添加多个值,并且都用' '隔开的话,用第二条语句比较方便。 一次只用一个的话,concat比较简单而且不同数据库通用。
说白了就是追加后追加
update 表名 set 字段名 = concat(series,",2")
前追加
update 表名 set 字段名 = concat("2,",series)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)