SQL学习- case when then else

Posted 许佳佳233

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL学习- case when then else相关的知识,希望对你有一定的参考价值。

场景

当前有一张“学生成绩表”
需要查询有哪些学生及格,哪些不及格。

例子

create table StudentScore (
	name string,
	score int
);

INSERT INTO StudentScore VALUES
('AAA',32),
('BBB',58),
('CCC',62),
('DDD',92);

select查询

select name,
case 
when score >= 90 then '优秀'
when score >= 60 then '及格'
else '不及格'
end as test_result
FROM StudentScore;

结果

以上是关于SQL学习- case when then else的主要内容,如果未能解决你的问题,请参考以下文章

SQL学习- case when then else

SQL学习- case when then else

SQL学习- case when then else

sql中case when的使用

SQL中case when then用法

SQL语句中case,when,then的用法