0
Did you mean fourth position?
If the index is 3, doesn't that mean from the fourth position? in the example you say starting from the 3rd item.
5 Réponses
+ 3
I imagine you refer to this example (get 4 records, starting from the third position):
SELECT ID, FirstName, LastName, City
FROM customers LIMIT 3, 4;
LIMIT counts the records differently, that is, starts counting the records from 1. If you execute an instruction like SELECT * FROM table LIMIT 0; you will not get any record, since you are indicating that you do not want any of them. If you execute SELECT * FROM table LIMIT 3; You will get 3 records, and so on.
+ 1
KrOW , sorry, I was addressing the author of the lesson, but Mickel did help.
+ 1
Alain The important is that you learned something 😉.
Anyway next times, please, make more clear your question 😅
0
With who you are talking?
0
Thank you, Mickel .