How can I convert this SQL query that enable to transfer some data from a table to another to a CQL query ?
INSERT INTO foo.table1 SELECT column_id, column2 FROM foo.table2 WHERE column_id >= ? AND column_id < ?
How can I convert this SQL query that enable to transfer some data from a table to another to a CQL query ?
INSERT INTO foo.table1 SELECT column_id, column2 FROM foo.table2 WHERE column_id >= ? AND column_id < ?