Skip to content
Advertisement

Is it possible to select all dishes that contain only ingredients A and B in one query?

I know you could achieve this by getting all dishes that contain A and B and then checking every dish in the results with a second query that counts how many ingredients each dish has. Then, if the number is 2, it should be a dish of 2 ingredients that contains A and B, so it ONLY contains A and B. Like this:

Getting all dishes that contain A and B.

Getting the number of ingredients in each dish.

The problem I see, is that you cannot use in the same query HAVING COUNT(DISTINCT ingredients.id) 2 times, one at the un-selected level, to get the total number of ingredients of a dish, and another at the selected level, to get the number of selected rows given the WHERE you used. I guess this is because HAVING applies to GROUP BY… But maybe I am wrong? If this were possible, then you could check both numbers and get only the dishes that just contain A and B.

Advertisement

Answer

Remove the WHERE clause and set the conditions only in the HAVING clause:

If each ingredient appears only once for each dish then the HAVING clause can be simplified to:

Another way to do it with the use of GROUP_CONCAT():

If each ingredient appears only once for each dish then there is no need for DISTINCT.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement