oracle字段值批量替换

发布网友 发布时间:2022-04-20 12:13

我来回答

1个回答

热心网友 时间:2022-04-07 19:05

1)instr()函数的格式  (俗称:字符查找函数)

格式一:instr( string1, string2 )    /   instr(源字符串, 目标字符串)

格式二:instr( string1, string2 [, start_position [, nth_appearance ] ] )   /   instr(源字符串, 目标字符串, 起始位置, 匹配序号)

解析:string2 的值要在string1中查找,是从start_position给出的数值(即:位置,-1表示从尾部开始倒数第1个)开始在string1检索,检索第nth_appearance(几)次出现string2。

SELECT A2.id,A1.name 
from A2 left join
A1 on A2.codeall=A1.code
where LENGTHB(codeall)-LENGTHB(replace(codeall,',','')) = 0
union all
SELECT A2.id,A11.name||','||A12.name 
from A2 left join
A1 A11 on substr(A2.codeall,1,instr(A2.codeall,',')-1)=A11.code left join
A1 A12 on substr(A2.codeall,instr(A2.codeall,',')+1,instr(A2.codeall,',',-1,1)-1)=A12.code
where LENGTHB(codeall)-LENGTHB(replace(codeall,',','')) = 1
union all
SELECT A2.id,A11.name||','||A12.name ||','||A13.name 
from A2 left join
A1 A11 on substr(A2.codeall,1,instr(A2.codeall,',')-1)=A11.code left join
A1 A12 on substr(A2.codeall,instr(A2.codeall,',')+1,instr(A2.codeall,',',1,2)-1)=A12.code
A1 A13 on substr(A2.codeall,instr(A2.codeall,',',1,2)+1,instr(A2.codeall,',',-1,1)-1)=A13.code
where LENGTHB(codeall)-LENGTHB(replace(codeall,',','')) = 2
union all
SELECT A2.id,A11.name||','||A12.name ||','||A13.name ||','||A14.name 
from A2 left join
A1 A11 on substr(A2.codeall,1,instr(A2.codeall,',')-1)=A11.code left join
A1 A12 on substr(A2.codeall,instr(A2.codeall,',')+1,instr(A2.codeall,',',1,2)-1)=A12.code
A1 A13 on substr(A2.codeall,instr(A2.codeall,',',1,2)+1,instr(A2.codeall,',',1,3)-1)=A13.code
A1 A14 on substr(A2.codeall,instr(A2.codeall,',',1,3)+1,instr(A2.codeall,',',-1,1)-1)=A14.code
where LENGTHB(codeall)-LENGTHB(replace(codeall,',','')) = 3

追问好像不对?

声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com