If I have two tables that are identical in structure, how can I move a set of rows from 1 table to the other while deleting records?
I want something similar like that in Cassandra:
BEGIN;
INSERT INTO persons_table select * from customer_table where person_name = 'tom';
DELETE FROM customer_table where person_name = 'tom';
COMMIT;