This repository demonstrates - Performing MySQL queries utilizing MySQLWorkbench on Sakila database. Sakila database is a normalized schema modeling a DVD rental store, featuring tables like films, actors, film-actor relationships, a central inventory table that connects films, stores, and rentals.
Find the query file here.
- Refer to the installation guide to install the necessary files.
 
- 
1a. Display the first and last names of all actors from the table
actor. - 
1b. Display the first and last name of each actor in a single column in upper case letters. Name the column
Actor Name. - 
2a. You need to find the ID number, first name, and last name of an actor, of whom you know only the first name, "Joe." What is one query would you use to obtain this information?
 - 
2b. Find all actors whose last name contain the letters
GEN: - 
2c. Find all actors whose last names contain the letters
LI. This time, order the rows by last name and first name, in that order: - 
2d. Using
IN, display thecountry_idandcountrycolumns of the following countries: Afghanistan, Bangladesh, and China: - 
3a. You want to keep a description of each actor. You don't think you will be performing queries on a description, so create a column in the table
actornameddescriptionand use the data typeBLOB(Make sure to research the typeBLOB, as the difference between it andVARCHARare significant). - 
3b. Very quickly you realize that entering descriptions for each actor is too much effort. Delete the
descriptioncolumn. - 
4a. List the last names of actors, as well as how many actors have that last name.
 - 
4b. List last names of actors and the number of actors who have that last name, but only for names that are shared by at least two actors
 - 
4c. The actor
HARPO WILLIAMSwas accidentally entered in theactortable asGROUCHO WILLIAMS. Write a query to fix the record. - 
4d. Perhaps we were too hasty in changing
GROUCHOtoHARPO. It turns out thatGROUCHOwas the correct name after all! In a single query, if the first name of the actor is currentlyHARPO, change it toGROUCHO. - 
5a. You cannot locate the schema of the
addresstable. Which query would you use to re-create it? - 
6a. Use
JOINto display the first and last names, as well as the address, of each staff member. Use the tablesstaffandaddress: - 
6b. Use
JOINto display the total amount rung up by each staff member in August of 2005. Use tablesstaffandpayment. - 
6c. List each film and the number of actors who are listed for that film. Use tables
film_actorandfilm. Use inner join. - 
6d. How many copies of the film
Hunchback Impossibleexist in the inventory system? - 
6e. Using the tables
paymentandcustomerand theJOINcommand, list the total paid by each customer. List the customers alphabetically by last name: - 
7a. The music of Queen and Kris Kristofferson have seen an unlikely resurgence. As an unintended consequence, films starting with the letters
KandQhave also soared in popularity. Use subqueries to display the titles of movies starting with the lettersKandQwhose language is English. - 
7b. Use subqueries to display all actors who appear in the film
Alone Trip. - 
7c. You want to run an email marketing campaign in Canada, for which you will need the names and email addresses of all Canadian customers. Use joins to retrieve this information.
 - 
7d. Sales have been lagging among young families, and you wish to target all family movies for a promotion. Identify all movies categorized as family films.
 - 
7e. Display the most frequently rented movies in descending order.
 - 
7f. Write a query to display how much business, in dollars, each store brought in.
 - 
7g. Write a query to display for each store its store ID, city, and country.
 - 
7h. List the top five genres in gross revenue in descending order. (Hint: you may need to use the following tables: category, film_category, inventory, payment, and rental.)
 - 
8a. In your new role as an executive, you would like to have an easy way of viewing the Top five genres by gross revenue. Use the solution from the problem above to create a view. If you haven't solved 7h, you can substitute another query to create a view.
 - 
8b. How would you display the view that you created in 8a?
 - 
8c. You find that you no longer need the view
top_five_genres. Write a query to delete it. 
- A schema is also available as 
sakila_schema.svg. Open it with a browser to view. 
'actor'
'actor_info'
'address'
'category'
'city'
'country'
'customer'
'customer_list'
'film'
'film_actor'
'film_category'
'film_list'
'film_text'
'inventory'
'language'
'nicer_but_slower_film_list'
'payment'
'rental'
'sales_by_film_category'
'sales_by_store'
'staff'
'staff_list'
'store'- 
To submit this homework using BootCampSpot:
- Create a GitHub repository.
 - Upload your .sql file with the completed queries.
 - Submit a link to your GitHub repo through BootCampSpot.
 
 
