Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 1.43 KB

lab_8.md

File metadata and controls

20 lines (14 loc) · 1.43 KB

logo_ironhack_blue 7

Lab | SQL Queries 8

In this lab, you will be using the Sakila database of movie rentals. You have been using this database for a couple labs already, but if you need to get the data again, refer to the official installation link.

The database is structured as follows: DB schema

Instructions

  1. Rank films by length (filter out the rows that have nulls or 0s in length column). In your output, only select the columns title, length, and the rank.
  2. Rank films by length within the rating category (filter out the rows that have nulls or 0s in length column). In your output, only select the columns title, length, rating and the rank.
  3. How many films are there for each of the categories in the category table. Use appropriate join to write this query
  4. Which actor has appeared in the most films?
  5. Most active customer (the customer that has rented the most number of films)

Bonus: Which is the most rented film? The answer is Bucket Brotherhood This query might require using more than one join statement. Give it a try. We will talk about queries with multiple join statements later in the lessons.