将一列拆分为多列
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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。