Join renting and customers
For many analyses it is necessary to add customer information to the data in the table renting.
This exercise is part of the course
Data-Driven Decision Making in SQL
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
SELECT * -- Join renting with customers
FROM ___
LEFT JOIN ___
ON ___;