Untitled
Untitled
19. You realize that some of these actors have tremendously long last names. Change the
data type of the middle name column to blobs.
20. List the last names of actors, as well as how many actors have that last name.
21. 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
22. Oh, no! The actor HARPO WILLIAMS was accidentally entered in the actor table as GROUCHO
WILLIAMS, the name of Harpo’s second cousin’s husband’s yoga teacher. Write a query to
fix the record.
23. Perhaps we were too hasty in changing GROUCHO to HARPO. It turns out that GROUCHO
was the correct name after all! In a single query, if the first name of the actor is
currently HARPO, change it to GROUCHO. Otherwise, change the first name to MUCHO
GROUCHO, as that is exactly what the actor will be with the grievous error. BE CAREFUL
NOT TO CHANGE THE FIRST NAME OF EVERY ACTOR TO MUCHO GROUCHO, HOWEVER!
24. You cannot locate the schema of the address table. Which query would you use to re-
create it?
25. Use JOIN to display the first and last names, as well as the address, of each staff member.
Use the tables staff and address:
26. Use JOIN to display the total amount rung up by each staff member in August of 2005.
Use tables staff and payment.
27. List each film and the number of actors who are listed for that film. Use tables film_actor
and film. Use inner join.
28. How many copies of the film Hunchback Impossible exist in the inventory system?
29. Using the tables payment and customer and the JOIN command, list the total paid by each
customer. List the customers alphabetically by last name:
30. The music of Queen and Kris Kristofferson have seen an unlikely resurgence. As an
unintended consequence, films starting with the letters K and Q have also soared in
popularity. Use subqueries to display the titles of movies starting with the letters K and Q
whose language is English.
31. Use subqueries to display all actors who appear in the film Alone Trip.
32. 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.
33. Sales have been lagging among young families, and you wish to target all family movies
for a promotion. Identify all movies categorized as famiy films.
34. Display the most frequently rented movies in descending order.
35. Write a query to display how much business, in dollars, each store brought in.
36. Write a query to display for each store its store ID, city, and country.
37. List the top five genres in gross revenue in descending order.
38. 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 have not solved 7h, you can substitute another query to create a view.
39. How would you display the view that you created in 8a?
40. You find that you no longer need the view top_five_genres. Write a query to delete it.