Requête 4

R4 : Les épisodes de série où il n’y a aucun acteur masculin.
Requête utilisée :
SELECT *
FROM `Episode` AS E
WHERE NOT EXISTS
    ( SELECT *
    FROM `ActeurDEpisode` AS J2, `Intervenant` AS I
    WHERE I.`IntervenantId` = J2.`IntervenantId`
    AND J2.`OeuvreId` = E.`OeuvreId`
    AND J2.`Saison` = E.`Saison`
    AND J2.`Numero` = E.`Numero`
    AND I.`GenreActeur` = 'Acteur' )
LIMIT 30 OFFSET 0;
Nombre d’épisodes : 3097
ID de l’œuvre Saison Numéro Titre de l’episode
211Napa
2101Portland, Oregon
2111San Diego, CA
2121Las Vegas, NV
2131Santa Barbara, CA
2141Rome, Italy
2151Paris, France
2161Amsterdam
2171Cooperstown
2181Florence, Italy
2191Savannah, GA
221The Keys
2201Tuscany, Italy
2211Charleston, SC
2221Atlanta, GA
231Los Angeles
241Vancouver Canada
251San Francisco
271Seattle, Washington
281Miami, Florida
291Monterey
18111Shadow of the Moon, Sea of the Shadow: Part 11
18121Shadow of the Moon, Sea of the Shadow: Part 12
18141Shadow of the Moon, Sea of the Shadow: Chapter of Recollection
18151Sea of the Wind, Shore of the Labyrinth: Part 1
18161Sea of the Wind, Shore of the Labyrinth: Part 2
18171Sea of the Wind, Shore of the Labyrinth: Part 3
18181Sea of the Wind, Shore of the Labyrinth: Part 4
18191Sea of the Wind, Shore of the Labyrinth: Part 5
18201Sea of the Wind, Shore of the Labyrinth: The Final Chapter