Advertisement
Guest User

Untitled

a guest
Mar 16th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.59 KB | None | 0 0
  1. SELECT Nom,Prenom
  2. FROM ETUDIANTS
  3. WHERE sexe='F' AND Matricule IN (SELECT Matricule
  4.                     FROM PARCOURS_HE
  5.                     WHERE AnSco=2007
  6.                     AND AnnEtud=2
  7.                     AND RefFormDet IN (SELECT RefFormDet
  8.                                      FROM GROUPES
  9.                                      WHERE RefFormDet IN (SELECT RefFormDet
  10.                                                           FROM ORGANISE
  11.                                                           WHERE RefFormDet IN (SELECT RefFormDet
  12.                                                                               FROM FORMATIONS_DET
  13.                                                                               WHERE RefFormation IN (SELECT RefFormation
  14.                                                                                                      FROM FORMATIONS
  15.                                                                                                      WHERE Formation='Informatique de gestion')))))
  16.  
  17. ORDER BY nom,prenom;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement