溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ORACLE創(chuàng)建自定義函數(shù)返回varchar類型

發(fā)布時(shí)間:2020-02-27 05:10:00 來(lái)源:網(wǎng)絡(luò) 閱讀:715 作者:小陳子057 欄目:關(guān)系型數(shù)據(jù)庫(kù)

需求描述:兩張表,如下,需要查詢tmp1表中id_new在tmp2中的name
select from tmp1;
ORACLE創(chuàng)建自定義函數(shù)返回varchar類型
select
from tmp2;

ORACLE創(chuàng)建自定義函數(shù)返回varchar類型
方法一:
好處:簡(jiǎn)單,直接sql展示
劣處:如果主表數(shù)據(jù)量太大,十幾億的話,性能會(huì)大大下降,此時(shí)建議第二種方法
select a.id_old,
to_char(wm_concat(distinct a.id_new)) id_new,
to_char(wm_concat(distinct b.name)) name
from tmp2 b,
(select a.id_old, regexp_substr(a.id_new, '[^,]+', 1, level) id_new
from tmp1 a
connect by level <= regexp_count(a.id_new, ',') + 1) a
where a.id_new = b.id_old(+)
group by a.id_old;

方法二:創(chuàng)建自定義函數(shù)來(lái)實(shí)現(xiàn)
create or replace function f_tmp_split(p_str varchar2, p_f varchar2)
return varchar2 is
v_pos pls_integer := 0; --獲取當(dāng)前分隔符位置
v_pre_pos pls_integer := 1; --從第幾位開(kāi)始截取
v_len pls_integer := 0; --字符串長(zhǎng)度
v_len1 pls_integer := 0; --分隔符長(zhǎng)度
v_result dbms_sql.Varchar2_Table; --結(jié)果集
v_num pls_integer := 1; --元素?cái)?shù)量
v_name_class varchar2(1000); --返回的集合
v_name_tmp varchar2(1000); --返回拼接的值
begin
v_len := length(p_str);
v_len1 := length(p_f);
while v_pos < v_len loop
v_pos := instr(p_str, p_f, v_pre_pos);
if v_pos = 0 then
v_pre_pos := v_len;
v_result(v_num) := substr(p_str, v_pre_pos);
begin
select a.name
into v_name_tmp
from tmp2 a
where a.id_old = v_result(v_num);
exception
when no_data_found then
v_name_tmp := '';
end;
v_name_class := v_name_class || v_name_tmp;
if v_pre_pos >= v_len then
exit;
end if;
else
v_result(v_num) := substr(p_str, v_pre_pos, v_pos - v_pre_pos);
begin
select a.name || p_f
into v_name_tmp
from tmp2 a
where a.id_old = v_result(v_num);
exception
when no_data_found then
v_name_tmp := '';
end;
v_name_class := v_name_class || v_name_tmp;
v_pre_pos := v_pos + v_len1;
end if;
end loop;
return v_name_class;
end;

效果如下:
ORACLE創(chuàng)建自定義函數(shù)返回varchar類型

ORACLE創(chuàng)建自定義函數(shù)返回varchar類型

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI