简体   繁体   English

在SQL中查询子查询结果

[英]Query Subquery Results in SQL

I am relatively new to SQL and I may be over thinking it but given the following table.I want a list of all students that are enrolled in Chemistry but not Mathematics.So given the data I would have Student 1. 我对SQL比较陌生,可能会想得不明白,但是给出了下表:我想要列出所有已注册化学而不是数学的学生的清单,因此给定数据,我将拥有学生1。

    Student_ID  Subject
      1      Chemistry
      2      Mathematics
      2      Chemistry
      3      History

Here's what I tried 这是我尝试过的

SELECT        Student_ID
FROM          Student 
WHERE        (Subject = 'Chemistry') AND (Subject <> 'Mathematics')

Perhaps I need to group somewhere because rows and returned that exist for both criteria. 也许我需要将其分组,因为这两个条件都存在行和返回值。

Here's one option using conditional aggregation : 这是使用conditional aggregation的一种选择:

select student_id
from student
group by student_id
having max(case when subject = 'Chemistry' then 1 end) = 1 and
       max(case when subject = 'Mathematics' then 1 else 0 end) != 1

And here's another option using not exists : 这是另一个not exists的选项:

select student_id
from student s
where subject = 'Chemistry' and not exists (
    select 1
    from student s2
    where s.student_id = s2.student_id and st.subject = 'Mathematics'
    )

You can use where and not in 您可以使用where而不是in

select Student_ID
from Student 
where Subject  = 'Chemistry'
and Student_ID NOT IN  ( select Student_ID from Student where subject ='Mathematics');

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM