gpt4 book ai didi

MySql查找和分类

转载 作者:太空宇宙 更新时间:2023-11-03 11:42:25 24 4
gpt4 key购买 nike

给定考试成绩=>排名查找表

查询表:

score_min_inclusive   score_max_exclusive   class  
45 67 D
67 77 C
77 82 B
82 100 A

得分表:

student_name    score   
zhang san 67
Wang er 88
Jack Ma 44
LiLi Zhang 73

想用MySQL得到这样一张表
排名表:

student_name   class  
zhang San C
Wang er A
Jack Ma null
LiLi Zhang C

我尝试使用 CASE WHEN THEN,但没有成功。有没有人有好主意?非常感谢。

问候,

最佳答案

使用外连接:

select student_name,class 
from lookup_table right join score_table on score < score_max_exclusive and score >=score_min_inclusive

另见 fiddle

关于MySql查找和分类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40926806/

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