Hi data engineers.
Can someone help me with Exercise 10? I don’t understand to much what should I do here.
Exercise: Write an SQL query to obtain the country, city, and address of the active staff members.
I’m trying this:
SELECT country.country, city.city, address.address
FROM staff
JOIN city ON country.country_id = city.country_id
JOIN address ON city.city_id = address.city_id
JOIN none ON none.none= none.none (I don’t know how to continue here)
WHERE staff.active;
Expected outcome
Thanks in advance.