1. 程式人生 > >好用的sql語句示例

好用的sql語句示例

info 某個字段 span 一段 style ble 固定 code bsp

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‘

好用的sql語句示例