Hello,
I'd appreciate any help with my current task

From all the customers which bought (for example) tea, coffee, ice tea, ice coffee, coke (kek), lemonade, tonic (etc.) I need to find those who bought lemonade and other products. But lemonade is a must.
So, someone gave me a hint to use the HAVING clause (cause I'm gonna use summed sales data in hectoliters), but I still don't know how to use it properly.
HAVING product = 'lemonade' and sum(quantity) > 0 -- This will give me only the 'lemonade' records, but I need also the other products but only from clients who bought lemonade. Thought about ELSE clause or something, I'm really missing something here

Thanks in advance