Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
143 views
in Technique[技术] by (71.8m points)

mysql - SQL: Why do I not get the same output with the two queries below?

I am trying to find Students who got all possible different grades. If you receive an 18 you pass the course and the highest number is 30. Thus, if you have received 13 different grades which are higher than 17 you have in turn received all possible passing grades. The first query returns 0 rows and the second one returns one with a student which has received all possible passing grades.

select sid, name, count(grade)
from student natural join exam 
group by sid, name
having count(distinct grade > 17) = 13; 



select sid, Name
from exam natural join student
group by sid
having count(distinct grade) = ( select count(distinct grade) 
                             from exam );

Thank you in advance!

question from:https://stackoverflow.com/questions/65644345/sql-why-do-i-not-get-the-same-output-with-the-two-queries-below

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You should not use natural join. It makes the query quite unclear on what it is doing.

In any case, this code:

count(distinct grade > 17)

can only return 0, or 1, or 2. Why? Because it is counting the distinct values of a boolean expression. And a boolean expression only has two values (plus NULL).

Hence, it will never be equal to 13.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...