Bonjour,
J'ai 5 tables:
tab customer
id_custo
name
tab custo_sell tab custo_rent tab custo_pro tab custo_t
id_sell id_rent id_pro id_t
id_custo id_custo id_custo id_custo
Donc chaque customer peut être dans une ou plusieurs
des 4 autres tables. Par ex il y a un customer qui s'appelle Jean et qui est dans la table "custo_rent":
tab customer tab custo_rent
19 10
jean 19
Et donc je voudrai pouvoir toucher les tables avec id_custo en sachant le name.
Et donc bien sure cela ne fonctionne pas.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7 SELECT * FROM customer c INNER JOIN custo_sell v ON c.id_custo= v.id_custo INNER JOIN custo_rent l ON c.id_custo= l.id_custo INNER JOIN custo_pro a ON c.id_custo= a.id_custo INNER JOIN custo_t b ON c.id_custo= b.id_custo where c.name = 'jean'
Est ce que quelqu'un pourrait m'aider please?
Merci.
Partager