我试图编写一个查询以显示每个餐厅产生的收入,但是,由于多对多关系创建的表,我正在努力寻找如何做到这一点。我知道我需要进行许多连接,但是我不太确定如何开始。
select rest_name, (menuItems_qty * menuItem_Price) as TotalEarnings
from restaurant, Menu, orders_has_menu
where
group by rest_name
order by TotalEarnings desc
图片:here