I want to make a query that will display the largest number of movies rented by one member and it should also show the member's name.
This is what I have.
SELECT FIRST, LAST AS, COUNT(mm_rental.member_id) AS "MAXIMUM MOVIES"
FROM mm_member, mm_rental
WHERE mm_rental.member_id = mm_member.member_id;
But its not working. Can anyone please help?
not working?