What i want to find is the following:
Find first and lastname for all female directors who have directed more than 5 movies,
and have used the same actor in all of their movies.
I've done the first part of this query which lists female directors with more than 5 movies:
select firstname, lastname
from person
where gender = 'F' AND personid in (select personid
from participation
where partname = 'director'
group by personid
having count(personId)>5)
order by surname;
Now, how do I find the directors that have used the same actor in all of their movies?
