Skip to content
Advertisement

Select statement in SQLite recognizing row number

I want to write SQLite statement something like this:

but i don’t have such column RowNumber. I have primary key in my table. But is there row number by default that i could use ?

Also i am searching info about writing more complicated SQLite statement. So if you have some links in bookmarks please share.

Thanks.

Advertisement

Answer

You want to use LIMIT and OFFSET

Which can also be expressed with the following shorthand syntax

Where X represents the offset, which is exclusive, and Y represents the quantity, so for example

Would return rows 51-100

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement