When OFFSET is given, then the query will process all the records and fetch only records given in OFFSET clause,
is that correct ?
Or if OFFSET is given then the query will process only records in OFFSET clause and return them.
WHEN OFFSET, LIMIT is given query needs to process OFFSET+LIMIT records and skip OFFSET records and produce LIMIT records.
If there is ORDER it needs to process all qualified records.