Myślę, że nie możesz zrobić tego wszystkiego za jednym razem, tak jak próbujesz, ponieważ chcesz pogrupować/zsumować przedmioty z różnych stołów w tym samym czasie. Spróbuj tego:
select unit, name, stays, days, total_price, charges, mgmt_fee,
(total_price*.01*mgmt_fee) AS management,
(total_price-(total_price*.01*mgmt_fee)-charges) AS bal
from (
select
x.unit,
name,
count(*) as stays,
sum(days) as days,
sum(total_price) as total_price,
charges,
mgmt_fee
from
(select
unit ,
datediff(depart,arrival) as days,
total_price
from
Reservations
) as x
join (
select unit, sum(amount) as charges
from Charges
group by unit
) as y
on x.unit = y.unit
join Unit as u
on u.id = x.unit
group by unit
) as inner_result
Niezbyt schludne ani eleganckie, ale myślę, że to działa.Pamiętaj, że musisz uważać, jeśli może być> 1 wiersz opłat na jednostkę.Oto skrzypce, aby pokazać, że działa:http://sqlfiddle.com/#!2/f05ba/18