Hello,
I've got a personal movie database I'm finishing up with and I can't figure out how to query across multiple linked tables (I'm self taught).
Here's what I want to know:
List all movies in the database that are computer animation, but are NOT Pixar.
Here's the relevant table information:
Movies
MovieID
Title
linkGenres
MovieID
GenreID
Genres
GenreID
Genre
linkSeries
MovieID
SeriesID
Series
SeriesID
Series
"Computer Animation" is one of my Genres (a movie can have multiple genres) and "Pixar" is one my Series (a movie can have multiple series)
I must be writing the SQL wrong when I do it because I can never get this kind of query to work without having to resort to using two separate queries. I'd like to have it all done in one.
Thanks.
I've got a personal movie database I'm finishing up with and I can't figure out how to query across multiple linked tables (I'm self taught).
Here's what I want to know:
List all movies in the database that are computer animation, but are NOT Pixar.
Here's the relevant table information:
Movies
MovieID
Title
linkGenres
MovieID
GenreID
Genres
GenreID
Genre
linkSeries
MovieID
SeriesID
Series
SeriesID
Series
"Computer Animation" is one of my Genres (a movie can have multiple genres) and "Pixar" is one my Series (a movie can have multiple series)
I must be writing the SQL wrong when I do it because I can never get this kind of query to work without having to resort to using two separate queries. I'd like to have it all done in one.
Thanks.