Get startedGet started for free

Exploring rating by country and gender

Now you will investigate the average rating of customers aggregated by country and gender.

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.

SELECT 
	___ -- Select country, gender and rating
    ___
    ___
FROM renting AS r
___ customers AS c -- Use the correct join
___;
Edit and Run Code