The OFFSET clause is used in SQL to skip a specified number of rows before returning the result set. It’s typically used together with the LIMIT (or FETCH) clause for pagination — showing results in chunks or "pages".
```SQL
SELECT *
FROM <table_name>
ORDER BY <column_name>
LIMIT n
OFFSET m;
```