思路:声明两个游标遍历表格中的数据,然后进行交叉对比,为了定位不同的数据,在临时表中新增一列row_n作为标记(默认值为1),如果数据不同,则更新row_n值为2。
create or replace function get_two_tables_difference
(in schem_n_1 text,in schem_n_2 text,in table_n_1 text,in table_n_2 text)
returns void
language plpgsql
as $$
declare curs1 refcursor;--游标1用于遍历第一个表
curs2 refcursor;--游标2用于遍历第二个表
record1 record;
record2 record;
m int=1;--用于计数进行循环
n int=1;--用于计数进行循环
i int=1;
j int=1;
result_hh record;--用于记录结果
flag boolean=false;
temp_n int;---用于记录哪些行满足条件
temp_n_1 int;
begin
drop table if exists temp_table_1;
drop table if exists temp_table_2;
drop table if exists temp_table_3;
execute format('create table temp_table_1 as select * from %I.%I',schem_n_1,table_n_1);
execute format('create table temp_table_2 as select * from %I.%I',schem_n_2,table_n_2);
select count(*)into m from temp_table_1;
select coun