1
List only the names of customers who have made more than 10 car rentals.
I started database a little while ago, if you can give me this strength I appreciate.
created as follows:
select Nome, count(CodAlu) as qte
From Cliente
WHERE CodAlu in ( select CodAlu from Aluga where (CodAlu> 10))
that’s right?
Do not repeat questions. If you want to add more details just edit the question and add them, you do not need a new question for this.
– anonimo