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
Post a Comment