MySQL Inner join and sum two columns

后端 未结 3 1371
时光取名叫无心
时光取名叫无心 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:54

    select a.ID,a.PRICE,a.PAID,a.id as AppId,
           sum(b.total) as ProdTotal 
    from appointments a 
    INNER JOIN appointments_products b ON a.id = b.appointment_id
    group by a.ID,a.PRICE,a.PAID;
    

提交回复
热议问题