使用情况:将某张表中的一些数据的name字段加上‘-DEL’后缀
使用concat拼接函数实现:
update table1 set name=(select concat(name,‘-DEL‘) from table1 where id = ‘123456‘)
id需要是唯一值,返回结果集不能只能事一条或者零条数据
MySQL update某条数据,在字段name后面加上'-DEL'字符
原文:https://www.cnblogs.com/zeevy/p/15266835.html