Re: Add support for data change delta tables

2024-01-22 Thread Vik Fearing
. ) AS t can be written as WITH old_table (c2) AS ( DELETE FROM t2 WHERE ... RETURNING c2 ) INSERT INTO t1 (c1) TABLE old_table So I suggest to add support for data change delta tables. Because this feature is more powerful and it is included i

Add support for data change delta tables

2024-01-13 Thread PavelTurk
provides only a subset of this functionality. So I suggest to add support for data change delta tables. Because this feature is more powerful and it is included in the SQL Standard. Best regards, Pavel