1、在某个字段后面追加固定的一段数据
mysql:公式:update table_name set field=CONCAT(‘str‘,field) where .....
示例:update app_contract_ info set apply_type=CONCAT(‘123456‘,apply_type) where cont_code =‘HFFQ‘
oracle:公式: update table_name set field=field||‘str‘ where .....
示例:update app_contract_ info set apply_type=apply_type||‘123456‘ where cont_code =‘HFFQ‘
原文:https://www.cnblogs.com/lu51211314/p/10637775.html