Il y a peut etre plus simple, mais tu peux passer par un SELECT FROM SELECT
SELECT Lib, Dev, SUM(VT) FROM
(SELECT Num Produit , Libelle Produit Lib, Devise Dev , Vente total VT
FROM Table 1
UNION
SELECT Num Produit , Libelle Produit Lib, Devise Dev , Vente total VT
FROM Table 2) TAB_TMP
GROUP BY Lib, Dev
Après il faudrait tester si ça marche :
SELECT T1.Libelle Produit , T1.Devise , SUM(T1.Vente total )+SUM(T2.Vente total ) FROM Table1 T1, Table2 T2
WHERE T1.Num Produit = T2.Num Produit
AND T1.Devise = T2.Devise
GROUP BY T1.Libelle Produit , T1.Devise
Mais du coup si un produit est seulement dans T2 ça coince .