0

what do you mean by limit3, 4; in sql

and what about if limit is0, 1;

26th Aug 2016, 6:32 AM
Gaurav Chand
Gaurav Chand - avatar
5 ответов
+ 4
limit 3,4 means you are limiting the value you want to see upto 4 successive values skipping the first 4 values(4 because as you have done in array the index value starts from 0 same in here the values starts from 0 so you are skipping 0,1,2,3).similarly limit 0,1 will display only 1 value which is in position 2 i.e the indexed position 1.
26th Aug 2016, 8:33 AM
Annesha Chakrabarty
Annesha Chakrabarty - avatar
+ 2
Limit3, 4 is starting from 4th next 4. And 0,1 is same as limit 1
26th Aug 2016, 7:56 AM
Nishanth A C
Nishanth A C - avatar
+ 1
Limit 0,1 wil show.....first row
5th Sep 2016, 1:43 PM
Shiv
0
limit 3,4 means you are limiting the value you want to see upto 4 successive values skipping the first 4 values(4 because as you have done in array the index value starts from 0 same in here the values starts from 0 so you are skipping 0,1,2,3).similarly limit 0,1 will display only 1 value which is in position 2 i.e the indexed position 1.
28th Aug 2016, 3:29 AM
Swarnava Indu
Swarnava Indu - avatar
0
ask more if you have any doubt ! :)
28th Aug 2016, 3:29 AM
Swarnava Indu
Swarnava Indu - avatar