SQLite3 (or general SQL) retrieve nth row of a query result
add LIMIT 1
and OFFSET <n>
to the query
example SELECT * FROM users LIMIT 1 OFFSET 5132;
add LIMIT 1
and OFFSET <n>
to the query
example SELECT * FROM users LIMIT 1 OFFSET 5132;