cql - How can use Where clause and Order BY together in cassandra 3.11.0 -


i have table in cassandra t(int a,int b, int c), , it's primary key ((a),b,c).

i want execute 2 below query :

select * t > ? order b;  select * t b > ? order c; 

i can define materialized view on table t , change primary key, want without materialized view because of it's overload.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -