分组结果插入到两个表中
Grouped result insert into two tables
我有以下 table.
CREATE TEMPORARY TABLE temp_detail
(
purchase_order_detail_id INTEGER,
item_id integer,
qty numeric(18,2),
project_id integer,
category_id integer,
supplier_id integer,
rate numeric(18,2)
);
我正在使用
获取带有 ID 的分组结果
SELECT array_agg(purchase_order_detail_id), project_id, category_id, supplier_id
FROM temp_detail
GROUP BY project_id, category_id, supplier_id
现在我想将 project_id、category_id、supplier_id 插入主 table 并将 item_id、qty、rate 插入其详细信息 table。细节 table 将主 table id 作为外键。请帮忙
假设此架构:
create table master (
master_id serial primary key,
project_id int,
category_id int,
supplier_id int
);
create table detail (
detail_id int,
item_id int,
qty numeric(18,2),
rate numeric(18,2),
master_id int references master (master_id)
);
create temporary table temp_detail (
purchase_order_detail_id integer,
item_id integer,
qty numeric(18,2),
project_id integer,
category_id integer,
supplier_id integer,
rate numeric(18,2)
);
这样做就可以了:
with d as (
insert into master (project_id, category_id, supplier_id)
select distinct project_id, category_id, supplier_id
from temp_detail
returning *
)
insert into detail (item_id, qty, rate, master_id)
select item_id, qty, rate, master_id
from
temp_detail td
inner join
d on (td.project_id, td.category_id, td.supplier_id) = (d.project_id, d.category_id, d.supplier_id)
;
我有以下 table.
CREATE TEMPORARY TABLE temp_detail
(
purchase_order_detail_id INTEGER,
item_id integer,
qty numeric(18,2),
project_id integer,
category_id integer,
supplier_id integer,
rate numeric(18,2)
);
我正在使用
获取带有 ID 的分组结果 SELECT array_agg(purchase_order_detail_id), project_id, category_id, supplier_id
FROM temp_detail
GROUP BY project_id, category_id, supplier_id
现在我想将 project_id、category_id、supplier_id 插入主 table 并将 item_id、qty、rate 插入其详细信息 table。细节 table 将主 table id 作为外键。请帮忙
假设此架构:
create table master (
master_id serial primary key,
project_id int,
category_id int,
supplier_id int
);
create table detail (
detail_id int,
item_id int,
qty numeric(18,2),
rate numeric(18,2),
master_id int references master (master_id)
);
create temporary table temp_detail (
purchase_order_detail_id integer,
item_id integer,
qty numeric(18,2),
project_id integer,
category_id integer,
supplier_id integer,
rate numeric(18,2)
);
这样做就可以了:
with d as (
insert into master (project_id, category_id, supplier_id)
select distinct project_id, category_id, supplier_id
from temp_detail
returning *
)
insert into detail (item_id, qty, rate, master_id)
select item_id, qty, rate, master_id
from
temp_detail td
inner join
d on (td.project_id, td.category_id, td.supplier_id) = (d.project_id, d.category_id, d.supplier_id)
;