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%"
update table set LocID=stuff(LocID,1,4,'0001') where left(LocID,4)='0004'