How to use apache drill do page search
问题 i want use apache drill to do a page search. But it just provide a limit key words,I don't know how to write a good sql.Do any anybody can help me?Thank you! 回答1: Drill supports both LIMIT and OFFSET operators. So, pagination can be achieved using these. Sample query: SELECT * FROM cp.`employee.json` order by employee_id LIMIT 20 OFFSET 10 ROWS Some important ponits from Drill docs: The OFFSET number must be a positive integer and cannot be larger than the number of rows in the underlying