The partition key is the minimum specifier needed to perform a query using a where clause.
If you declare a composite clustering key, the order matters.
Say you have the following primary key:
PRIMARY KEY((part_key1, part_key_2), (clust_key_1, clust_key_2, clust_key_3))
Then, the only valid qu...