S
skneife
I need to get a range of records from a specific position like Limit
start,numberOfRecords in mySql:
Example a table with columns name and age:
id name age
1 John 20
2 Peter 31
3 Mike 18
....
150 Andrew 45
Now I need to get a slice of records that return at position 3 the 10
next records.
" is the stared position and 10 the slice needed.
Is there a simple way for soing that ?
Sam
start,numberOfRecords in mySql:
Example a table with columns name and age:
id name age
1 John 20
2 Peter 31
3 Mike 18
....
150 Andrew 45
Now I need to get a slice of records that return at position 3 the 10
next records.
" is the stared position and 10 the slice needed.
Is there a simple way for soing that ?
Sam