I need to find the donors that have donated over three times. This is what I have so far
select DONOR.DONOR_LNAME as last_name, DONOR.DONOR_FNAME as first_name, count(GIFT.AMOUNT)as NUM_PAYMENTS
from DONOR join GIFT on DONOR.DONOR_NO= GIFT.DONOR_NO
group by DONOR_NO
having count(AMOUNT) >=3