j'ai une requête pour afficher nom et fonction des employés ayant le même chef et la même fonction que martin.
Ces deux requêtes sont fait la même résultat,est-ce qu'ils sont correct??
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 Select Nom,Fonction from EMPLOYE where Chef=all(select Chef from EMPLOYE where Nom='Martin' AND Fonction=all(select Fonction from EMPLOYE where Nom='Martin')); select Nom,Fonction from EMPLOYE where Chef=all(select Chef from EMPLOYE where Nom='Martin') AND Fonction=all(select Fonction from EMPLOYE where Nom='Martin')
c'est quoi la différence entre les deux requete quand il execute??
SVP, vous pouvez me corriger un peu.
Partager