Advertisement
Guest User

Untitled

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