In this SQL statement, notice the color of the word "having" versus the words "select", "from", "where", and "group by"
select
cu.name
,cu.email
,count(*) as books_purchased
from
customers cu
,purchases pu
where cu.customerid = pu.customerid
and pu.year = 2003
group by
cu.name
,cu.email
having
count(*) > 1
