Query
SELECT Name FROM Opportunity ORDER BY Name LIMIT 10 OFFSET 2
The SOQL query above normally returned 10 rows, you could use OFFSET 2 in your query to skip the first 2 rows:
Without OFFSET;
SELECT Name FROM Opportunity ORDER BY Name LIMIT 10
Query Results
Video
Video does not exists.