gpt4 book ai didi

MySQL查询: get only those name_id which has 4 and 6 term_id attached to it

转载 作者:行者123 更新时间:2023-11-29 06:19:24 24 4
gpt4 key购买 nike

我有一个像这样的表格和数据

id | term_id | name_id 
1 | 4 | 1
2 | 6 | 1
3 | 5 | 2
4 | 6 | 2
3 | 4 | 3
4 | 6 | 3

我想要一个查询,以便我只能获取那些附加了 4 和 6 term_id 的 name_id ...如果我查询 4,6,2 它不应该显示任何内容,因为没有 name_id 附加到所有三个它们或像 4,5 它不应该显示任何内容,因为 non 具有相同的 4 和 5

最佳答案

SELECT Name_ID
FROM Table1 t
WHERE term_id IN (4,6)
GROUP BY NAME_ID
HAVING COUNT(*) = 2

关于MySQL查询: get only those name_id which has 4 and 6 term_id attached to it,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4614851/

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