This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select prodyear, title, firstname||' '||lastname as director | |
from person natural join film natural join filmitem natural join | |
filmparticipation | |
where parttype = 'director' and filmtype = 'TV' and prodyear = ( | |
select min(prodyear) | |
from film natural join filmitem | |
where filmtype = 'TV'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select count(filmid), max(prodyear), min(prodyear) | |
from person natural join film natural join filmparticipation | |
where parttype = 'director' and firstname = 'Anja' and lastname = 'Breien'; |
NewerOlder