limit 3,4; | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

limit 3,4;

for understanding this command draw a database table,write 0,1,2_3...beside uid column,then u wil notice that count 3 is uid 4,since uid starts from 1 and count starts from 0,so lets say we write count for starting position uid 0. 1 1. 2 2. 3 3. 4

26th Oct 2016, 11:10 AM
Samarth Arun Narula
Samarth Arun Narula - avatar
1 Answer
0
As in almost every programming language indexes starts from Zero('0') index, 3 denotes the fourth('4') node/element in array/collection. In this case 4th row of the table. So 'limit 3, 4' will return rows starting from 'Row 4th' up to 'Row 8th'. First value denotes the starting and second values tells how many rows to fetch.
15th Nov 2016, 11:38 PM
Satyendra Chaudhary
Satyendra Chaudhary - avatar