Question
SQL Question, write SQL queries to answer the questions. Find all films with maximum length or minimum rental duration (compared to all other films). In
SQL Question, write SQL queries to answer the questions.
- Find all films with maximum length or minimum rental duration (compared to all other films).
In other words let L be the maximum film length, and let R be the minimum rental duration in the table film. You need to find all films that have length L or duration R or both length L and duration R.
If a film has either a maximum length OR a minimal rental duration it should appear in the result set. It does not need to have both the maximum length and the minimum duration.
You just need to return the film_id for this query.
Order your results by film_id in ascending order.
-
We want to find out how many of each category of film ED CHASE has starred in.
So return a table with category_name and the count of the number_of_films that ED was in that category.
Your query should return every category even if ED has been in no films in that category
Order by the category name in ascending order.
-
Find the first_name, last_name and total_combined_film_length of Sci-Fi films for every actor.
That is the result should list the names of all of the actors(even if an actor has not been in any Sci-Fi films) and the total length of Sci-Fi films they have been in.
Look at the category table to figure out how to filter data for Sci-Fi films.
Order your results by the actor_id in descending order
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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