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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

stract oracle,ORACLE 字符串聚合函数 strCat

發布時間:2023/12/10 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 stract oracle,ORACLE 字符串聚合函数 strCat 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

源碼如下:

create or replace type strcat_type as object

(

currentstr varchar2(4000),

currentseprator varchar2(8),

static function ODCIAggregateInitialize(sctx IN OUT strcat_type) return number,

member function ODCIAggregateIterate(self IN OUT strcat_type,value IN VARCHAR2) return number,

member function ODCIAggregateTerminate(self IN strcat_type,returnValue OUT VARCHAR2, flags IN number) return number,

member function ODCIAggregateMerge(self IN OUT strcat_type,ctx2 IN strcat_type) return number

);

/

create or replace type body strcat_type is

static function ODCIAggregateInitialize(sctx IN OUT strcat_type) return number is

begin

sctx := strcat_type('',',');

return ODCIConst.Success;

end;

member function ODCIAggregateIterate(self IN OUT strcat_type, value IN VARCHAR2) return number is

begin

if self.currentstr is null then

self.currentstr := value;

else

self.currentstr := self.currentstr ||currentseprator || value;

end if;

return ODCIConst.Success;

end;

member function ODCIAggregateTerminate(self IN strcat_type, returnValue OUT VARCHAR2, flags IN number) return number is

begin

returnValue := self.currentstr;

return ODCIConst.Success;

end;

member function ODCIAggregateMerge(self IN OUT strcat_type, ctx2 IN strcat_type) return number is

begin

if ctx2.currentstr is null then

self.currentstr := self.currentstr;

elsif self.currentstr is null then

self.currentstr := ctx2.currentstr;

else

self.currentstr := self.currentstr || currentseprator || ctx2.currentstr;

end if;

return ODCIConst.Success;

end;

end;

/

CREATE OR REPLACE FUNCTION strcat (input VARCHAR2) RETURN VARCHAR2 PARALLEL_ENABLE AGGREGATE USING strcat_type;

/

總結

以上是生活随笔為你收集整理的stract oracle,ORACLE 字符串聚合函数 strCat的全部內容,希望文章能夠幫你解決所遇到的問題。

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