Question
Select a list of all reviewers and the movies that they issued reviews for. For all movies, create a list of movie names and the
Select a list of all reviewers and the movies that they issued reviews for.
For all movies, create a list of movie names and the ratings it received.
Using a SELECT ... WHERE, for all movies, create a list of movie names, the ratings it received, and who wrote the review.
Using a SELECT ... JOIN, for all movies, create a list of movie names, the ratings it received, and who wrote the review.
For all directors, show a list of names and a count of how many movies they have directed. Order by the descending number of movies
Using a SELECT ... WHERE, for all movies released in the 1990s (i.e.: 1990-1999), list the movie title, release year, first and last name of the actors associated with the movie.
Using a SELECT ... JOIN, for all movies released in the 1990s, list the movie title, release year, first and last name of the actors associated with the movie.
Using a SELECT .. WHERE, for all movies released in the 1990s, list the movie title, release year, first and last name of the actors associated with the movie, and the role they played.
Using a SELECT ... JOIN, for all movies released in the 1990s, list the movie title, release year, first and last name of the actors associated with the movie, and the role they played.
Using a SELECT ... WHERE, for all movies released in the 1990s, list the movie title, release year, first and last name of the actors associated with the movie, the role they played, and who directed the movie. Order by release year (ascending), and the title of the movie. (
Using a SELECT ... JOIN, for all movies released in the 1990s, list the movie title, release year, first and last name of the actors associated with the movie, the role they played, and who directed the movie. Order by release year (ascending), and the title of the movie.
Using a SELECT .. JOIN, for all movies, show their title and genre.
Using a SELECT ... WHERE, for each genre show the average rating. Arrange the results in descending order by average rating, and ascending order by genre.
Using a SELECT ... JOIN, show all actors who are also directors, the role the played in the movie, and the title of the movie.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
To perform the requested SQL queries Ill assume you have a database with tables named movies reviews ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started