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テーブル内の他のすべてのアイテムではなく、それぞれから 1 つのアイテムを返す最良の方法は何でしょうか。現在、以下のクエリはすべてのメーカーを返します
id
SELECT m.name FROM `default_ps_products` p INNER JOIN `default_ps_products_manufacturers` m ON p.manufacturer_id = m.id
DISTINCTクエリの値を使用して質問を解決しました。
DISTINCT
SELECT DISTINCT m.name, m.id FROM `default_ps_products` p INNER JOIN `default_ps_products_manufacturers` m ON p.manufacturer_id = m.id ORDER BY m.name