0
what do you mean by limit3, 4; in sql
and what about if limit is0, 1;
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.
+ 2
Limit3, 4 is starting from 4th next 4. And 0,1 is same as limit 1
+ 1
Limit 0,1 wil show.....first row
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.
0
ask more if you have any doubt ! :)