Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySQL の行 1 から 500 が必要な場合、LIMIT 0, 500 または LIMIT, 1, 500 を使用する必要がありますか? 違いはなんですか?ありがとう!
最初のものは結果全体の最初のレコードから始まり、2 番目のものは結果の 2 番目のレコードから始まります。
次のレコードを検討してください
ID 1 -- index of the first record is zero. 2 3 4 5 6
実行すると
LIMIT 0, 3 -- the result will be ID: 1,2,3 LIMIT 1, 3 -- the result will be ID: 2,3,4
その他