There are 3 tables: events, eventClients and clients.
Write a query that finds events that all clients have access to?
Inner join doesn't guarantee that all rows in a table participate so this doesn't help:
select * from events e
inner join eventclients ec on e.id = ec.eventid
inner join clients c on etc.clientid = c.id