I\'m new in cassandra, and I have to export the result of a specific query to a csv file.
I found the COPY command, but (from what I understand) it allo
CQL COPY is good option for importing or exporting data. But if you want to analyze some small query output you can run below command and save the output in a file.
cqlsh -e "SELECT * FROM table WHERE column = 'xyz' > queryoutput.txt
However, you can use CAPTURE also for saving output of the query to analyze something