I'm trying to construct a MySQL-query, where the result is based on the given ingredients.
If said that I provide Tequila, Orangejuice and Grenadine, I want the result to be Tequila Sunrise ONLY. Not everything that has either ingredient in them.
My current query is:
SELECT *
FROM drink
INNER JOIN mix
ON drink.id = mix.drinkid
WHERE Ing IN ('Tequila', 'Apelsinjuice', 'Grenadine')
I would be so grateful for any help!
Thank you in advance!