Offset

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 8

husseinnasser.

com
GET /news?
page=10
page=10&&count=10
select title
from news
GET /news? offset 100
page=10
page=10&&count=10 limit 10
select title
from news row 1

offset 100 row 2


limit 10 ...

row 99

row 100

row 101

....

row 110

row 111
select title row 1

from news row 2


offset 100 ...
limit 10 row 99

row 100

row 101

....

row 111

row 112
new row
select title
new row
row 1
from news inserted
row 2
offset 110
...
limit 10
row 110
read twice
row 111

row 112

....

row 121

row 122
husseinnasser.com

You might also like