gpt4 book ai didi

sql - 查找连接表中只有一行的记录

转载 作者:行者123 更新时间:2023-12-03 00:23:22 25 4
gpt4 key购买 nike

表格

recipe_food_xref
recipe_id int
food_id int

需要在recipe_food_xref中找到一条记录,其中食谱只有一种食物,并且该食物是一种特定食物。

它可以完美地连接到自身:

SELECT x1.recipe_id FROM recipe_food_xref x1
INNER JOIN recipe_food_xref x2 ON x2.recipe_id = x1.recipe_id
WHERE x1.food_id = 1
GROUP BY x1.recipe_id
HAVING COUNT(x2.recipe_id) = 1

这看起来有点难看,我想知道是否有更好的方法。

这是一个包含一些示例数据的 SqlFiddle。基本上我想找到recipe_id:1,因为它有 food_id:1 并且没有超过一个 food_id

http://sqlfiddle.com/#!3/6d474/1

最佳答案

SELECT recipe_id 
FROM recipe_food_xref
GROUP BY recipe_id
HAVING sum(case when food_id = 1 then 1 else 0 end) = 1
and sum(case when food_id <> 1 then 1 else 0 end) = 0

SQLFiddle demo

关于sql - 查找连接表中只有一行的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19137573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com