假设我有一张表customers
:
-----------------
|id|name|country|
|1 |Joe |Mexico |
|2 |Mary|USA |
|3 |Jim |France |
-----------------
表格languages
:
-------------
|id|language|
|1 |English |
|2 |Spanish |
|3 |French |
-------------
表格cust_lang
:
------------------
|id|custId|langId|
|1 |1 |1 |
|2 |1 |2 |
|3 |2 |1 |
|4 |3 |3 |
------------------
给出一个清单:[“英语”,“西班牙语”,“葡萄牙语”]
使用WHERE IN
作为列表,它仍将返回带有ID 1,2的客户,因为它们匹配“英语”和“西班牙语”。
但是,结果应该返回0行,因为没有客户匹配所有三个术语。
我只希望客户ID与cust_lang表匹配时返回。
例如,给出一个列表:[“英语”,“西班牙语”]
我希望结果是客户Id 1,因为他一个人说两种语言。
现在为了使其更复杂,这个额外的相关查询出了什么问题:
我们假设我还有一个表degrees
:
-----------
|id|degree|
|1 |PHD |
|2 |BA |
|3 |MD |
-----------
相应的联接表cust_deg
:
------------------
|id|custId|degId |
|1 |1 |1 |
|2 |1 |2 |
|3 |2 |1 |
|4 |3 |3 |
------------------
以下查询不起作用。但是,它是两个相同的查询组合。结果应该只是与两个列表匹配的行,而不是一个列表。
SELECT * FROM customers C
WHERE C.id IN (
SELECT CL.langId FROM cust_lang CL
JOIN languages L on CL.langId = L.id
WHERE L.language IN ("English", "Spanish")
GROUP BY CL.langID
HAVING COUNT(*) = 2)
AND C.id IN (
SELECT CD.custId FROM cust_deg CD
JOIN degrees D ON CD.degID = D.id
WHERE D.degree IN ("PHD", "BA")
GROUP BY CD.custId HAVING COUNT(*) = 2));`
EDIT2:我想我修好了。我不小心在那里有一个额外的选择声明。
答案 0 :(得分:5)
您可以使用group by
和having
:
select cl.custid
from cust_lang cl join
languages l
on cl.langid = l.id
where l.language in ('English', 'Spanish', 'Portuguese')
group by cl.custid
having count(*) = 3;
例如,如果您只想检查两种语言,则只需更改WHERE ... IN
和HAVING
条件,例如:
where l.language in ('English', 'Spanish')
和
having count(*) = 2
答案 1 :(得分:1)
这几乎是戈登的答案,但它的好处是在语言列表上更灵活,并且不需要对with my_languages as (
select langId from languages
where language in ('English', 'Spanish')
)
select cl.custId
from cust_lang as cl inner join my_languages as l on l.langId = cl.langId
group by cl.custId
having count(*) = (select count(*) from lang)
子句进行任何更改。
UIUserNotificationActionBehaviorTextInput