次のモデルがあるとしましょう:
Customer(customer_id (PK), firstName, lastName, email)
Item(item_id (PK), name, description)
Orders(orders_id (PK), customer_id (FK), item_id (FK), promotion_id (FK)),
Promotion(promotion_id (PK), date, gift_id (FK))
Gift(gift_id (PK), name, description)
さて、次の要件があるとしましょう。
すべての顧客からのすべての注文 (グループ化されていない) のリストと、関連するアイテムとギフトの両方から名前列を取得します。
難しいのは、関連テーブルの注文には、1 対多のテーブル (プロモーション) への外部キー列があり、それがギフトへの外部キーを持つことです。次のクエリが機能しましたが、このような多くの結合を行うよりも、問題にアプローチするためのよりエレガントな方法が必要であることがわかりました。
select concat(c.firstName, ' ', c.lastName) as customerName,
i.name, g.name
from customer as c
left join orders as o on c.customer_id = o.customer_id
inner join item as i on o.item_id = i.item_id
inner join promotion as p on o.promotion_id = p.promotion_id
inner join gift as g on p.gift_id = g.gift_id;
よりエレガントな方法でクエリを解決するにはどうすればよいですか? 前もって感謝します!