数据库某字段更新追加新值oracleupdate user_logu-- u为表别名 setu.describeu.describe || + 123 --修
数据库某字段更新追加新值
oracle
update user_log u -- u为表别名 set u.describe=u.describe || + '123' --修改对应字段值
mysql
update 表 set 字段=concat(字段,'aaaa') where 字段=条件
数据库某字段更新追加新值
oracle
update user_log u -- u为表别名 set u.describe=u.describe || + '123' --修改对应字段值
update 表 set 字段=concat(字段,'aaaa') where 字段=条件