In this lab, you will be using the Sakila database of movie rentals.
- How many films are there for each of the categories in the category table. Use appropriate join to write this query.
- Display the total amount rung up by each staff member in August of 2005.
- Which actor has appeared in the most films?
- Most active customer (the customer that has rented the most number of films)
- Display the first and last names, as well as the address, of each staff member.
- List each film and the number of actors who are listed for that film.
- Using the tables
payment
andcustomer
and the JOIN command, list the total paid by each customer. List the customers alphabetically by last name. - List the titles of films per
category
.