MySQL Inner join and sum two columns

后端 未结 3 1260
时光取名叫无心
时光取名叫无心 2021-01-29 10:22

I have the following tables

TABLE: appointments

ID | PRICE | PAID
48 |  100  | 180

TABLE: appointments_product

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-29 10:57

    select b.Appointment_Id, a.price, a.PAID, a.id, sum(b.total) AS TotalProd FROM appointments_products AS b inner join appointments as a On Appointment_Id = a.Id group by Appointment_Id, a.Price , a.PAID , a.id HAVING a.PAID != (a.Price + sum(b.Total))

提交回复
热议问题