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.
10 から 20 (LIMIT 10, 20) の範囲が必要な場合に問題が発生し、1 から 20 までのすべてが返されます。なぜこのように機能するのかわかりません。クエリは次のとおりです。
SELECT * FROM table LIMIT 10, 20
このテーブルには 5 つの外部キーがありますが、それが理由でしょうか?
制限の構文はLIMIT offset, rowcount. したがって、10 番目から始まる 20 行を要求しています。あなたはおそらくしたいですLIMIT 10, 10。
LIMIT offset, rowcount
LIMIT 10, 10