I am trying to replicate the SQL query
SELECT * FROM table ORDER BY column_name LIMIT 100, 10;
The same query doesn't work in Athena, and when I looked up the Athena Documentation, it seems like LIMIT
only accepts one value i.e. the count. So, only queries like LIMIT 100
would work.
So, how do we implement pagination for tables in Athena?