①concat在原有的基础上追加内容(追加)
sql语句: update 表名 set title=concat(title, ‘123’) where id=1;
id: 1
title: 标题
结果: 标题123
②replace替换原有字段的内容(替换)
sql语句: update 表名 set title=replace(title, ‘题’, ‘头’) where id=1;
id : 1
title:标题
结果: 标头
①concat在原有的基础上追加内容(追加)
sql语句: update 表名 set title=concat(title, ‘123’) where id=1;
id: 1
title: 标题
结果: 标题123
②replace替换原有字段的内容(替换)
sql语句: update 表名 set title=replace(title, ‘题’, ‘头’) where id=1;
id : 1
title:标题
结果: 标头