日期:2014-05-16  浏览次数:20457 次

数据库某字段更新追加新值
oracle

 update user_log  u       -- u为表别名
 set  u.describe=u.describe || + '123' --修改对应字段值
  



mysql

update 表 set 字段=concat(字段,'aaaa') where 字段=条件