[Memperluas jawaban dvv]
Anda dapat berpindah ke tabel yang sudah ada sebagai berikut. Untuk skema yang tidak cocok, Anda harus menentukan kolom.
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;
Tapi Anda ingin memindahkan data ke baru tabel (bukan yang sudah ada), sintaks luarnya berbeda:
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;