devi usare il costrutto union.
Ti faccio l'esempio di due tabelle
create table t1 (int prezzo);
create table t2 (int prezzo);
insert into t1 values (1),(2),(3),(4);
insert into t1 values (5),(6),(7),(8);


devi fare

select sum(prezzo) from ( (select prezzo from t1 ) union (select prezzo from t2 ) ) as T ;

risultato 36

ciao
sergio