sql 替换某个字段前四位数字,前四位是一样的,后几位不一样!

2025-03-29 02:43:25
推荐回答(2个)
回答1:

oracle可以用

update table
set locid="0001" || substr(locid,5)
where locid like "0004%"

不是oracle的话,试试这样

update table
set locid=concat("0001", substring(locid,5))
where locid like "0004%"

回答2:

update table set LocID=stuff(LocID,1,4,'0001') where left(LocID,4)='0004'