bonjour, dans une requète je cherche a faire un where
sur deux colonnes en meme temps
est-ce possible ?
et si oui
pourriez vous m'indiquer mon erreur merci!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
table a ( champ a, champ b, chmap c, champ d)
 
select *
from table a
where b,c
not in (
select b,c from table a
where d=conditions;
)