SKIP
In v20.3+, use the SKIP clause to skip first N results. The results start at result N + 1.
Syntax
Section link for SyntaxSELECT {fields}
FROM {query target}
SKIP {number}Query Examples
Section link for Query ExamplesThe following are examples of queries using SKIP.
The following query skips the first 25 results. The first result returned is result 26.
SELECT id
FROM documents
SKIP 25