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でカテゴリを含む簡単なブログを作成しています。
myblog.com/category.php?id=3 でこれを見せてほしい:
TITLE of the category 3 // other stuff ALL POSTS of the category 3
したがって、実際には2つのクエリを実行します(1つはタイトルを取得するため、もう1つは投稿を取得するためです)。
1つのクエリでこれを行う方法はありますか?
データベーステーブルによっては、そのようなことができます
SELECT c.title, p.data FROM category c LEFT JOIN post p ON p.category = c.category ORDER BY p.date
ただし、カテゴリのタイトルは投稿ごとに繰り返されます