选择与列表中的所有项目匹配的行组

Select group of rows that match all items in a list(选择与列表中的所有项目匹配的行组)
本文介绍了选择与列表中的所有项目匹配的行组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有两张桌子:

cars – 汽车列表

carname | modelnumber | ...

passedtest – 包含汽车通过的所有测试:

passedtest – contains every test that a car passed:

id | carname | testtype | date | ...
1  | carA    | A        | 2000 |
2  | carB    | C        | 2000 |
3  | carC    | D        | 2001 |
4  | carA    | C        | 2002 |

现在,我如何从 passedtest 表中选择通过所有测试(A、B、C、D)的汽车?

Now, how can I select a car from the passedtest table that passed all tests (A, B, C, D)?

我尝试了 IN 语句,但它也匹配通过了一项测试的汽车.我正在寻找一个语句来匹配列表中所有行的 all 值.

I tried the IN statement but it also matches cars that pass even one test. I am looking for a statement to match all values in a list across all rows.

推荐答案

这个怎么样?

SELECT carname
FROM PassedTest
GROUP BY carname
HAVING COUNT(DISTINCT testtype) = 4

您也可以将它用作从 cars 表中获取信息的内部语句:

You can also use it as an inner statement for taking info from the cars table:

SELECT *
FROM cars
WHERE carname IN (
    SELECT carname
    FROM PassedTest
    GROUP BY carname
    HAVING COUNT(DISTINCT testtype) = 4
)

这篇关于选择与列表中的所有项目匹配的行组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)