Forum de discussion
Forum « Programmation ASP » (archives)
Re: Besoin aide sur ASP/SQL
Envoyé: 26 octobre 2004, 7h36 par Salem
SELECT h.id, h.nom, t.champsx
FROM hotels h
LEFT JOIN autre_table t ON t.hotel_id = h.id
Tu peux aussi imbriquer une sous requete SELECT dans ta requete principale (dans la clause SELECT elle meme), mais point de vue performance, c'est pas top. Bref, ca donnerait:
SELECT h.id, h.nom, (select t.champsx from autre_table t where t.hotel_id = h.id) as champsx
FROM hotels h
Réponses
|