Information Systems 3A
ILS03A1 Practical 3
2025-03-10
Explanation of OFFSET and FETCH NEXT
ORDER BY CustomerID
• This sorts the records in the Customers table based on the
CustomerID in ascending order.
OFFSET 5 ROWS
• This skips the first 5 rows from the result set.
FETCH NEXT 5 ROWS ONLY
• After skipping 5 rows, this retrieves the next 5 rows.
Click the link to learn
more about JOINS
SQL Joins