Bonjour,
est il possible de construire une requete select qui cherche une même valeur dans plusieurs tables?
un truc genre:
select monChamp from (table1 OR table2 OR table3) where monChamp = 10
SELECT TABLE1.champ AS champ1, TABLE2.champ AS champ2 FROM TABLE1, TABLE2 WHERE champ1 = "cherche moi" OR champ2 = "cherche moi"