Mysql
 sql >> Datenbank >  >> RDS >> Mysql

eine einfache Möglichkeit, ein Ergebnis von UNION in MySql zu summieren

select id, sum(amount) from (
    select id,amount from table_1 union all
    select id,amount from table_2 union all
    select id,amount from table_3
) x group by id