This example performs an INSERT SELECT to copy orders from partitions 1 and 2 of the SLPPI orders table into the old_orders table using the system-defined PARTITION column as a search condition, and then deletes them from orders in the second part of the multistatement request.
INSERT INTO old_orders SELECT * FROM orders WHERE orders.PARTITION IN (1,2) ;DELETE FROM orders WHERE orders.PARTITION IN (1,2);