• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Oracle cols_as_rows 比对数据

mysql 搞代码 4年前 (2022-01-09) 27次浏览 已收录 0个评论

AskTom提供的脚本,用于比对数据. create or replace type myscalartype as object ( rnum number, cname varchar2(30), val varc

AskTom提供的脚本,用于比对数据.

create or replace type myscalartype as object
( rnum number, cname varchar2(30), val varchar2(4000) )
/
create or replace type mytabletype as table of myscalartype
/

create or replace
function cols_as_rows( p_query in varchar2 ) return mytabletype
— This function is designed to be installed ONCE per database, and
— it is nice to have ROLES active for the dynamic sql, hence the
— AUTHID CURRENT_USER.
authid current_user
— This function is a pipelined function, meaning that it’ll send
— rows back to the client before getting the last row itself.
— In 8i, we cannot do this.
pipelined
as
l_thecursor integer default dbms_sql.open_cursor;
l_columnvalue varchar2(4000);
l_status integer;
l_colcnt number default 0;
l_desctbl dbms_sql.desc_tab;
l_rnum number := 1;
begin
— Parse, describe and define the query. Note, unlike print_table,
— I am not altering the session in this routine. The
— caller would use to_char() on dates to format and if they
— want, they would set cursor_sharing. This routine would
— be called rather infrequently. I did not see the need
— to set cursor s来1源gaodai#ma#com搞*代#码1网haring therefore.
dbms_sql.parse( l_thecursor, p_query, dbms_sql.native );
dbms_sql.describe_columns( l_thecursor, l_colcnt, l_desctbl );
for i in 1 .. l_colcnt loop
dbms_sql.define_column( l_thecursor, i, l_columnvalue, 4000 );
end loop;

— Now, execute the query and fetch the rows. iterate over
— the columns and “pipe” each column out as a separate row
— in the loop. Increment the row counter after each
— dbms_sql row.
l_status := dbms_sql.execute(l_thecursor);
while ( dbms_sql.fetch_rows(l_thecursor) > 0 )
loop
for i in 1 .. l_colcnt
loop
dbms_sql.column_value( l_thecursor, i, l_columnvalue );
pipe row
(myscalartype( l_rnum, l_desctbl(i).col_name, l_columnvalue ));
end loop;
l_rnum := l_rnum+1;
end loop;

— Clean up and return…
dbms_sql.close_cursor(l_thecursor);
return;
end cols_as_rows;
/

create or replace function
cols_as_rows8i( p_query in varchar2 ) return mytabletype
authid current_user
as
l_thecursor integer default dbms_sql.open_cursor;
l_columnvalue varchar2(4000);
l_status integer;
l_colcnt number default 0;
l_desctbl dbms_sql.desc_tab;
l_data mytabletype := mytabletype();
l_rnum number := 1;
begin
dbms_sql.parse( l_thecursor, p_query, dbms_sql.native );
dbms_sql.describe_columns( l_thecursor, l_colcnt, l_desctbl );

for i in 1 .. l_colcnt loop
dbms_sql.define_column( l_thecursor, i, l_columnvalue, 4000 );
end loop;
l_status := dbms_sql.execute(l_thecursor);
while ( dbms_sql.fetch_rows(l_thecursor) > 0 )
loop
for i in 1 .. l_colcnt
loop
dbms_sql.column_value( l_thecursor, i, l_columnvalue );
l_data.extend;
l_data(l_data.count) :=
myscalartype( l_rnum, l_desctbl(i).col_name, l_columnvalue );
end loop;
l_rnum := l_rnum+1;
end loop;

dbms_sql.close_cursor(l_thecursor);
return l_data;
end cols_as_rows8i;
/

以HR表为例,比对员工编号200和201的员工数据
column val format a20;
select a.cname,a.val,b.val from
table(cols_as_rows(‘select * from hr.employees where employee_id=200’)) a,
table(cols_as_rows(‘select * from hr.employees where employee_id=201’)) b
where a.cname=b.cname and (a.val is not null or b.val is not null)
order by a.cname;

本文永久更新链接地址


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Oracle cols_as_rows 比对数据

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址