PostgresQL - 如何在一个存储过程中插入 main table 和 detail table?

PostgresSQL - How to insert into main table and detail table in one stored procedure?

所以我正在做一个项目,该项目要求我的查询在一个事务中插入一个主 table 及其详细信息 table(将作为列表发送到数据库)这样,如果其中一个插入函数失败,它就会回滚。

假设我有这些 tables:

CREATE TABLE transaction(
  id             BIGSERIAL PRIMARY KEY NOT NULL,
  user_id        BIGINT    FOREIGN KEY NOT NULL,
  total_item     INT                   NOT NULL DEFAULT 0,
  total_purchase BIGINT                NOT NULL DEFAULT 0
)

CREATE TABLE transaction_detail(
  id              BIGSERIAL PRIMARY KEY NOT NULL,
  transaction_id  BIGINT    FOREIGN KEY NOT NULL,
  product_id      BIGINT    FOREIGN KEY NOT NULL,
  product_price   INT                   NOT NULL DEFAULT 0,
  purchase_amount INT                   NOT NULL DEFAULT 0
)

我有这个功能:

CREATE OR REPLACE FUNCTION create_transaction(order JSONB, product_list JSONB)

函数参数:

我当前的查询如下所示:

CREATE OR REPLACE FUNCTION insert_order(tx JSONB, product_list JSONB)
    RETURNS BIGINT
AS $$
WITH result AS (
    INSERT INTO transaction(
        user_id,
        total_item,
        total_purchase,
    ) VALUES (
        (tx ->> 'user_id') :: BIGINT,
        (tx ->> 'total_item') :: INT,
        (tx ->> 'total_purchase') :: INT,
    )
    RETURNING id AS transaction_id 
)
FOR row IN product_list LOOP
    INSERT INTO transaction_detail(
        transaction_id,
        product_id,
        product_price,
        purchase_amount,
    ) VALUES (
        transaction_id,
        (row ->> 'product_id') :: BIGINT,
        (row ->> 'product_price') :: INT,
        (row ->> 'purchase_amount') :: INT,
    )
END LOOP;
$$ LANGUAGE SQL SECURITY DEFINER;

JSON 个文件:

[ "user_id" : "1", "total_item" : "2", "total_purchase" : "2000", ]

[ { "product_id" : "1", "product_price" : "500", "purchase_amount" : "2" }, { "product_id" : "2", "product_price" : "1000", "purchase_amount" : "1" } ]

我知道我的查询有问题,但我无法确定。 非常感谢任何指针。

假设作为product_list传递的数据是一个数组,你可以这样做:

CREATE OR REPLACE FUNCTION insert_order(p_order JSONB, p_product_list JSONB)
    RETURNS BIGINT
AS $$
  WITH result AS (
      INSERT INTO "transaction"(
          user_id,
          total_item,
          total_purchase
      ) VALUES (
          (p_order ->> 'user_id') :: BIGINT,
          (p_order ->> 'total_item') :: INT,
          (p_order ->> 'total_purchase') :: INT
      )
      RETURNING id AS transaction_id 
  ), details as (
    INSERT INTO transaction_detail(
        transaction_id,
        product_id,
        product_price,
        purchase_amount
    ) 
    select r.transaction_id, 
           (pl.data ->> 'product_id')::bigint,
           (pl.data ->> 'product_price')::int,
           (pl.data ->> 'purchase_amount')::int
    from result r,
      jsonb_array_elements(p_product_list) as pl(data)
  )
  select transaction_id 
  from result;
$$ 
LANGUAGE SQL SECURITY DEFINER;

我重命名了参数以避免名称与保留关键字冲突。通过为参数名称添加前缀,您还可以避免与列或 table 名称发生名称冲突。 order 是保留关键字,只能在引用时使用,例如"order"transaction 是一个关键字,但它不是保留关键字,但最好还是引用它。

交易详情的插入需要 INSERT...SELECT select 从 result 获取生成的交易 ID 并取消嵌套产品列表中的数组元素 JSON值。

CTE 的最终 select 然后 returns 生成的交易 ID。

您可以这样调用函数:

select insert_order('{"user_id": 42, "total_item": 1, "total_purchase": 100}'::jsonb, 
                    '[ {"product_id": 1, "product_price": 10, "purchase_amount": 1}, 
                       {"product_id": 2, "product_price": 20, "purchase_amount": 2}, 
                       {"product_id": 3, "product_price": 30, "purchase_amount": 3} ]'::jsonb);