Ma requête est du type :
CODE
SELECT c.id, c.nom, a.id AS a_id, a.nom AS a_nom FROM table1 LEFT OUTER JOIN table2 ON <condition-jointure>WHERE <conditions>
Je parviens à mettre comme conditions dans le WHERE (par exemple)
CODE
a.nom=foo
mais pas CODE
a_nom=foo
, ce qui me gène.Est-ce normal? Peut-on feinter?