The OFFSET statement is often used for pagination - a process of dividing data into "pages".
For example, there is an open blockchain explorer API from which you can retrieve data using SQL syntax. This API is used by many, so its development team limited the number of output rows to 100 per request.
We have already successfully called the API 4 times and pushed the resulting data in our database.
Please, enter one line to modify the following API query to make the 5th call.
SELECT
id,
hash,
amount,
address_to,
address_from,
started_at,
finished_at,
status
FROM api_database
WHERE status = "finished"
ORDER BY finished_at asc
LIMIT 100;