Get startedGet started for free

Analyzing preferences of genres across countries

You are asked to study the preferences of genres across countries. Are there particular genres which are more popular in specific countries? Evaluate the preferences of customers by averaging their ratings and counting the number of movies rented from each genre.

This exercise is part of the course

Data-Driven Decision Making in SQL

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

-- Join the tables
SELECT *
FROM renting AS r
___ movies AS m
ON ___
___ customers AS c
ON ___;
Edit and Run Code