bonjour,

je ne parviens pas a joindre le résultat des 2 requêtes suivantes :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
select count(*) as XCOUNT, ERRORCODE,MSG_ERROR from TABLE1,TABLE3 where TABLE3.ID=TABLE1.ID group by ERRORCODE,MSG_ERROR order by XCOUNT desc;
 
select count(*) as XCOUNT, ERRORCODE,MSG_ERROR from TABLE2,TABLE3 where TABLE3.ID=TABLE2.ID group by ERRORCODE,MSG_ERROR order by XCOUNT desc;
je voudrais obtenir 1 seule table en résultat,
merci!