I need to create a csv file in cassandra, that will only give the csv file of specific rows, and specific column.
CREATE TABLE abcd (
a bigint,
b bigint,
c bigint,
d int,
e int,
PRIMARY KEY (a)
);
Select a,c,e from abcd where a in (1,4,5,6,7,8,9,.....);
If I use COPY command I can select columns, but I can't select from rows. How to get a csv file in cassandra where I can select from rows and columns. Is it possible to get a csv file like this?