Working around the 10,000 result limit of data explorer?

Is there any way to bypass this limit? I want to download all unlisted topics, and there are a lot of them. A lot more than 10k

For larger queries, you can add pagination to them and get batches that can be merged together ‘off-site’. Something like:

--[params]
-- integer :limit = 10000
-- integer :page = 0

SELECT
    id,
    title
FROM topics
WHERE visible = false
ORDER BY id
OFFSET :page * :limit
LIMIT :limit

3 Likes

Awesome, thanks :raised_hands:
It worked. I just didn’t know how pagination in SQL works

1 Like