[Expanderar på dvv:s svar]
Du kan flytta till en befintlig tabell enligt följande. För omatchat schema bör du ange kolumner.
WITH moved_rows AS (
DELETE FROM <original_table> a
USING <other_table> b
WHERE <condition>
RETURNING a.* -- or specify columns
)
INSERT INTO <existing_table> --specify columns if necessary
SELECT [DISTINCT] * FROM moved_rows;
Men du vill flytta data till en ny tabell (inte en befintlig), är den yttre syntaxen annorlunda:
CREATE TABLE <new_table> AS
WITH moved_rows AS (
DELETE FROM <original_table> a
USING <other_table> b
WHERE <condition>
RETURNING a.* -- or specify columns
)
SELECT [DISTINCT] * FROM moved_rows;