将一列拆分为多列
select split_part(colb, '_', 1) col1
,split_part(colb, '_', 2) col2
from t3
把 colb 依照_分成多列 1,2 是_第几次呈现
批量批改某一个字段中的其中一部分 REPLACE() 函数
update at_ba_prg set url =REPLACE(url,'https://2222','https://1111')
WHERE url like 'https://2222%'
把 url 字段中 https:2222 换成 https://1111