Vous êtes sur la page 1sur 1

SERIER N�3

16)
SELECT nom, prenom
FROM personne, jouer
WHERE idpersonne != idacteur

SELECT distinct nom, prenom


FROM personne
WHERE personne.idpersonne
not in(select jouer.idacteur from jouer);

17)
SELECT p.nom, p.prenom
FROM jouer j, film f, personne p
WHERE p.idpersonne = j.idacteur
AND j.idacteur = f.idrealisateur;

18)
select j.idacteur
from jouer j, cinema c, projection p
where c. nom='le fontenelle' and
c.idcinema=p.idcinema and
p.jour>='2000.01.01' and
j.idfilm=p.idfilm;

19)
select distinct f.titre
from personne p, jouer j, film f, projection r, cinema c
where p.nom='kidmane' and
p.prenom='nicole' and
p.idpersonne=j.idacteur and
j.idfilm=r.idfilm and
r.idcinema=c.idcinema and
c.nom='le fontenelle' and
r.idfilm=f.idfilm;

Vous aimerez peut-être aussi