2014-12-31 3 views

답변

2
select sum(total) from 
(
    select sum(amt) as total from tableA where id>10 
    union all 
    select sum(amount) from tableB where people = 'JOSH' 
) as q 
관련 문제