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.
データベースでは、id (自動インクリメント)、タイトル、および説明の 3 つの列を持つテーブル、atable です。
テーブルの最後の 6 行を取得して、次のようにデータを投稿するにはどうすればよいですか。
<div class="myclass"> <h1>Title</h1> <p>Description</p> </div>
あなたが探しているSQLは次のようなものです:
SELECT Title, Description FROM aTable ORDER BY ID Desc LIMIT 6
ORDER BYID を使用しますLIMIT。
ORDER BY
LIMIT