sql >> Base de Datos >  >> RDS >> Mysql

MySQL complejo ÚNETE con GROUP BY

Creo que no puede hacerlo todo de una vez porque quiere agrupar/sumar elementos de diferentes tablas al mismo tiempo. Prueba esto:

 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

No es muy ordenado ni elegante, pero creo que funciona. Tenga en cuenta que tendrá que tener cuidado si puede haber> 1 fila de cargos por unidad. Aquí hay un violín para mostrarlo en ejecución:http://sqlfiddle.com/#!2/f05ba/18