I have a Cassandra table and it contains a column named 'marks'. It is not part of the primary key.
Now, I wish to run something like this: select * from mytable WHERE marks in (58,88);
How to achieve this? I want to run the same via Stargate API also. I have tried to disable paging but not work. SAI and SASI index does not seem to help. Here is the Stargate URL I am trying to run. The DB asks me to ALLOW FILTERING
http://localhost:8082/v2/keyspaces/mykeyspace/mytable?where={"marks":{"$in":[58,88]}}