I need to get selective data copied to CSV file from Cassandra table as the query results is about million records. how to i do it with COPY command
select * from table1 where date='20190825'
cussrently using belo query which is giving all table data COPY FROM table1 to /tmp/25Aug.csv
i need to get data copied to csv file for only seleted date.