将一列拆分为多列

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


泽诺熙
25 声望2 粉丝

« 上一篇
异步