CREATE TABLE footable (
column1 text,
column2 text,
column3 text,
column4 text,
PRIMARY KEY ((column1, column2))
)
In the example above which I got from Querying Cassandra by a partial partition key, is it possible to use condition on the 1st partition key and select all condition on 2nd partition key?
Example cql statement may look like this:
select * from footable where column1 = 'name' and column2 ALL;
Is there some sort of querying like this in Cassandra?