Bonjour,
il existe plusieurs manières:
Faire un produit cartésien
Code :
select
t1.champ1, t1.champ2, t2.champ8, t3.champ5
from table1 t1, table2 t2
where t1.champ1 = t2.champ1
and ...
ou alors utiliser les jointures gauche, droite ou naturel
Code :
select
t1.champ1, t1.champ2, t2.champ8, t3.champ5
from table1 t1
left join table2 t2 on t1.champ1 = t2.champ1
where ....
a toi de voir quelle type de requête dont tu as besoin
PascalCmoa
email: PascalCmoa