Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a web API that returns the next "set" of x number of items based on the ID of the last item that was recieved. So, if my last item ID was 30, and I want 50 more, then I should get IDs 31 - 81.

If I implement an SQL query that says SELECT * FROM table WHERE ID > 30 LIMIT 50, am I guaranteed to get IDs 31 - 81? Or, is there a way to do that? The ID column is AUTOINCREMENT.

Also, this is SQLite, specifically. I am not sure if that matters.

share|improve this question
Can the ID column have gaps, as by deleted records? – pilcrow Jul 16 '12 at 1:46
Yes it can. However the ID column is AUTOINCREMENT so I don't think this would be an issue. – user1032657 Jul 16 '12 at 19:47

2 Answers

up vote 0 down vote accepted

You should also order them by id before limiting the number of results

SELECT * FROM table WHERE ID > 30 
order by ID
LIMIT 50
share|improve this answer

Usually in SQLite you would do something like this:

SELECT * FROM table LIMIT 50 OFFSET 30;

See http://www.sqlite.org/lang_select.html for documentation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.