在我的Access数据库中,我有一个基于披萨公司的四个不同的表:
我可以用什么查询来计算刚才霍华德·罗克的账单?我希望表格显示一行,显示他的名字,姓氏,地址和订单总成本。我知道我必须使用表别名,但由于我是SQL的新手,所以还有很多东西可以解决这个问题。
答案 0 :(得分:1)
select Sum(productprice.UnitPrice) as 'Bill'
from productprice
join OrderItems on productprice.ProductId = OrderItems.ProductId
join Orders on OrderItems.OrderId = Orders.OrderId
join Customers on Orders.CustomerId = Customers.CustomerId
Where Customers.CustomerId = 'C004'
and Customers.fname = 'Howard'
group by productprice.ProductId