I have read about the Cassandra copy command which copies all the data from one column family to another one. But suppose I want to move only the rows which are filtered from column family 1 to column family 2 is it possible ?
Like, select * from sample where age=40; gives 10 records and those 10 needs to be put in another column family.
Please help me