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.
私がする必要があるのは、(PHP を使用して) テーブルから最新の 10 行を選択することです (最も高い ID を持つ最初の行を除く)。これはどのように行われますか?
SELECT * FROM `table` ORDER BY id DESC LIMIT 1, 10
1 はオフセットで、10 は返されるレコードの制限です!