pgsql获取两个同结构表的不同数据条,结果以表格输出

使用pgsql通过游标和临时表对比两个同结构表格的数据,不同之处通过row_n标记,值为2表示数据不一致。
摘要由CSDN通过智能技术生成

思路:声明两个游标遍历表格中的数据,然后进行交叉对比,为了定位不同的数据,在临时表中新增一列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
要备份pgsql数据库结构数据,可以使用pg_dump命令。具体步骤如下: 1. 打开命令提示符界面,切换到数据库安装的bin目录下。 2. 输入以下命令来备份整个数据库,包括结构数据: ``` pg_dump -h localhost -p 5432 -U postgres -d 数据库名 > 备份文件路径 ``` 其,localhost是数据库主机名,5432是数据库端口号,postgres是数据库用户名,数据库名是要备份的数据库的名称,备份文件路径是备份文件的保存路径和文件名。[1] 例如,要备份名为data的数据库,并将备份文件保存在D盘的data.bak文件,可以使用以下命令: ``` pg_dump -h localhost -p 5432 -U postgres -d data > D:\data.bak ``` 如果只想备份指定的(包括数据),可以使用以下命令: ``` pg_dump -h 主机名 -p 端口号 -d 数据库名 -t 名1 -t 名2 -U 用户名 > 备份文件路径 ``` 其,主机名是数据库主机名,端口号是数据库端口号,数据库名是要备份的数据库的名称,名1和名2是要备份的的名称,用户名是数据库用户名,备份文件路径是备份文件的保存路径和文件名。[3] 例如,要备份名为data的数据库table1和table2,并将备份文件保存在/data/文件夹下的filename.sql文件,可以使用以下命令: ``` pg_dump -h localhost -p 5432 -d data -t table1 -t table2 -U postgres > /data/filename.sql ``` 如果需要了解更多关于pgsql数据的函数和SQL操作,可以参考该链接:https://www.runoob.com/postgresql/postgresql-tutorial.html。[2]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值