I'm trying to retrieve the data which the partition key value is odd from cassandra database.
Now I have table t with primary key p.
I tried
Select * from t where token(p)%2=1;
but I got the error message:
SyntaxException: line 1:44 no viable alternative at input '%' (...from videos_by_tag where token(tag)[%]...)
What can I do?