Users can have multiple projects and projects can have multiple clients. How do I get all the unique clients from the projects a user belongs to?
Tables: - Users - Projects - Clients - Project Clients
SELECT client_id, client_name FROM clients.. ? JOINS, USING.. ?.. what?