I need to answer this question: 4) Search for the name and address of the customers who have all the films in the store.
I can not test the query, but would it be something like this?
SELECT C.nome, C.endereço from CLIENTES C
WHERE EXISTS (
SELECT * FROM filmes F
WHERE EXISTS (
SELECT * from locaçoes L
where F.id = L.filme and C.id = L.cliente
)
)