Compare commits
No commits in common. "af3e89bb6ebaa9d362e89cd57e322338bd177d0f" and "6481e3fb89551db51da7de4887d09c8cac9cb6ec" have entirely different histories.
af3e89bb6e
...
6481e3fb89
1 changed files with 2 additions and 3 deletions
|
@ -135,9 +135,8 @@ RIGHT JOIN Publication pub ON pub.idPublication = ps.idScientifique
|
|||
WHERE pub.classeConf = 'A' AND pub.classeConf IN 'A*', 'B', 'C';
|
||||
|
||||
-- Axel Q13
|
||||
SELECT p.idScientifique, p.nom, p.prenom FROM Personnel
|
||||
JOIN Enseignant_Chercheur ec ON ec.idEnseignant = p.idPersonnel
|
||||
RIGHT JOIN Encadrement encad1 on encad1.idEnseignant = ec.idEnseignant
|
||||
SELECT ec.idEnseignant, ec.nom, ec.prenom
|
||||
FROM Enseignant_Chercheur ec, Encadrement encad1
|
||||
WHERE ec.idEnseignant = encad1.idScientifique
|
||||
AND NOT EXISTS (SELECT * FROM Doctorant doc
|
||||
WHERE NOT EXISTS(SELECT * FROM Encadrement encad2
|
||||
|
|
Loading…
Reference in a new issue