日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

oracle的function的语法,Oracle function语法

發布時間:2023/12/10 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 oracle的function的语法,Oracle function语法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

2018-3-30 遇到需要使用SQL方法拼接字符串的情況,就研究了一下SQL簡單的方法應用

--定義入參數[參數名 in 參數類型]

create or replace function p_gettype(se_type in varchar2)

--定義返回類型

return varchar2

is

v_calling_type varchar2(45);

v_called_type varchar2(45);

v_tr_in varchar2(45);

v_tr_out varchar2(45);

v_sett_name varchar2(90);

begin

--查出v_calling_type

select call_type_name into v_calling_type from uparam.settle_a_def

where call_type = substr(se_type,1,2);

--查出v_called_type

select call_type_name into v_called_type from uparam.settle_a_def

where call_type = substr(se_type,3,2);

--查出v_tr_in

select tr_type_name into v_tr_in from uparam.tr_b_def

where tr_type = substr(se_type,5,2);

--查出v_tr_out

select tr_type_name into v_tr_out from uparam.tr_b_def

where tr_type = substr(se_type,7,2);

--返回字符串 calling_type(tr_in)->called_type||(tr_out);

v_sett_name := v_calling_type ||'('|| v_tr_in||')->'||v_called_type||'('|| v_tr_out||')';

return v_sett_name;

exception

when others then

return null;

end p_gettype;

總結

以上是生活随笔為你收集整理的oracle的function的语法,Oracle function语法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。