用数据库语法判断学生成绩小于60分,大于60分,大于70分,大于80分,case when表达式的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用数据库语法判断学生成绩小于60分,大于60分,大于70分,大于80分,case when表达式的相关的知识,希望对你有一定的参考价值。
做好用case when这类表达式
参考技术A select 成绩,(case when 成绩<60 then '不及格'case when (成绩 >60 and 成绩 <70) then '及格'
case when (成绩 >60 and 成绩 <70) then '良'
case when (成绩 >60 and 成绩 <70)then '优'
else 0 end) as 成绩评价
from table 参考技术B vb的
select case feng
case <60
some cade
case <70 and >60
some cade
case >80
some cade
end select
以上是关于用数据库语法判断学生成绩小于60分,大于60分,大于70分,大于80分,case when表达式的的主要内容,如果未能解决你的问题,请参考以下文章
如何查询每个学生已获得的学分(注:成绩及格才能获得相应课程的学分)