How can I skip first few rows in the resultset in cqlsh? I know I can iterate the resultset and ignore first few rows, but I am looking to do it in the query itself.
Following queries work in SQL, but what is their equivalent in cqlsh
SELECT * FROM foo LIMIT 10, 50
SELECT column FROM table LIMIT 10 OFFSET 10
I looked up QueryBuilder (and related classes in DataStax) and didnot find anything there. Thanks