Je ne parviens pas à faire une requête avec un select imbriqué :
Select t1.tradId IdPays, t1.tradFR lbPays
From traduction t1
where t1.tradType = 'Pays'
and t1.tradId not in
( select t2.tradInfo
from traduction t2
where t2.tradType = 'Capitale'
and t2.tradInfo <> '0')
MySQL a répondu:
Something is wrong in your syntax près de 'select t2.tradInfo
Y'a-t-il une syntaxe particulière pour le select imbriqués sous MySQL ?