簡體   English   中英

根據 postgresql 中的上一行更新數據

[英]Update data based on the previous row in postgresql

  CREATE TABLE xyz (name text, cols int, rows int, minitemcols int, x int, y int, rn int);
  INSERT INTO xyz ("widgetName",cols,"rows","minItemCols",x,y,rn) VALUES
     ('A',12,19,8,0,0,1),
     ('B',12,11,12,NULL,NULL,2),
     ('C',5,6,4,NULL,NULL,3),
     ('D',3,6,3,NULL,NULL,4),
     ('E',4,6,3,NULL,NULL,5),
     ('F',4,6,4,NULL,NULL,6),
     ('G',3,6,3,NULL,NULL,7),
     ('H',5,6,5,NULL,NULL,8),
     ('I',7,6,7,NULL,NULL,9),
     ('J',12,9,12,NULL,NULL,10)
     ('K',12,24,8,NULL,NULL,11),
     ('L',5,16,3,NULL,NULL,12),
     ('M',7,16,7,NULL,NULL,13);
-- x
IF (CurrentRow.cols + CurrentRow.x = 12) || (CurrentRow.cols + CurrentRow.x = NextRow.minItemCols) THEN 
    NextRow.x = 0
ELSE IF (CurrentRow.cols + CurrentRow.x < 12) && (CurrentRow.cols + CurrentRow.x >= NextRow.minItemCols)
    NextRow.x = CurrentRow.cols + CurrentRow.x
ELSE IF (CurrentRow.cols + CurrentRow.x < 12)
    NextRow.x = CurrentRow.cols + CurrentRow.x
END IF;    


--y
IF (CurrentRow.cols + CurrentRow.x = 12) THEN 
    NextRow.y = CurrentRow.rows + CurrentRow.y
ELSE IF (CurrentRow.cols + CurrentRow.x < 12)
    NextRow.y = CurrentRow.y
END IF;   
-- Output (providing in insert statements)

INSERT INTO xyz ("widgetName",cols,"rows","minItemCols",x,y,rn) VALUES
     ('A',12,19,8,0,0,1),
     ('B',12,11,12,0,19,2),
     ('C',5,6,4,0,30,3),
     ('D',3,6,3,5,30,4),
     ('E',4,6,3,8,30,5),
     ('F',4,6,4,0,36,6),
     ('G',3,6,3,4,36,7),
     ('H',5,6,5,7,36,8),
     ('I',7,6,7,0,42,9),
     ('J',12,9,12,0,48,10)
     ('K',12,24,8,0,57,11),
     ('L',5,16,3,0,81,12),
     ('M',7,16,7,5,81,13);

對於 rn(行號)= 1,x 和 y 始終保持為 0。現在我需要根據上述情況(IF ..ELSE)更新 x 和 y 列的其余部分。 如果不更新上一行,我將無法更新下一行。 有沒有辦法在查詢中做到這一點

您可以對此類查詢使用遞歸 CTE:

WITH RECURSIVE rec(name, col, row, min_item_col, x, y, rn) AS (
    SELECT *
    FROM xyz
    WHERE rn = 1

    UNION ALL

    (
        SELECT next.name,
               next.cols,
               next.rows,
               next.minitemcols,
               CASE
                   WHEN cur.col + cur.x = 12 THEN 0
                   WHEN cur.col + cur.x = next.minitemcols THEN 0
                   /* this 3rd condition seems pointless given the last one */
                   WHEN cur.col + cur.x < 12 AND cur.x + cur.col >= next.minitemcols THEN cur.col + cur.x
                   WHEN cur.col + cur.x < 12 THEN cur.col + cur.x
               END AS x,
               CASE
                   WHEN cur.col + cur.x = 12 THEN cur.row + cur.y
                   WHEN cur.col + cur.x < 12 THEN cur.y
               END AS y,
               next.rn
        FROM rec AS cur
        JOIN xyz AS next
          ON next.rn > cur.rn
        ORDER BY rn
        LIMIT 1
    )
)
UPDATE xyz
SET x = rec.x, y = rec.y
FROM rec
WHERE xyz.rn = rec.rn
;

將表更新為

+----+----+----+-----------+----+----+--+
|name|cols|rows|minitemcols|x   |y   |rn|
+----+----+----+-----------+----+----+--+
|A   |12  |19  |8          |0   |0   |1 |
|B   |12  |11  |12         |0   |19  |2 |
|C   |5   |6   |4          |0   |30  |3 |
|D   |3   |6   |3          |5   |30  |4 |
|E   |4   |6   |3          |8   |30  |5 |
|F   |4   |6   |4          |0   |36  |6 |
|G   |3   |6   |3          |4   |36  |7 |
|H   |5   |6   |5          |7   |36  |8 |
|I   |7   |6   |7          |0   |42  |9 |
|J   |12  |9   |12         |7   |42  |10|
|K   |12  |24  |8          |NULL|NULL|11|
|L   |5   |16  |3          |NULL|NULL|12|
|M   |7   |16  |7          |NULL|NULL|13|
+----+----+----+-----------+----+----+--+

請注意,從“K”行開始,結果與您的示例略有不同。 我認為"row J".x應該是7而不是0 (從最后一個else if條件開始),這也會改變其余的行。 盡管如此,我認為調整代碼以獲得您想要的結果應該很容易。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM