用Select case 编写程序完成输入一学生成绩,评定其等级,在窗体上输出。
方法是:90~100分为“优秀”80~89分为“良好”70~79分为“中等”60~69分为“及格”60分以下为“不合格”...
方法是: 90~100分为“优秀”
80~89分为“良好”
70~79分为“中等”
60~69分为“及格”
60分以下为“不合格” 展开
80~89分为“良好”
70~79分为“中等”
60~69分为“及格”
60分以下为“不合格” 展开
1个回答
展开全部
Select (case when fen >= 90 and fen <= 100 then '优秀'
when fen >= 80 and fen <= 89 then '良好'
when fen >= 70 and fen <= 79 then '中等'
when fen >= 60 and fen <= 69 then '及格'
when fen <= 59 then '不合格' end ) as [水平]
from tablename
when fen >= 80 and fen <= 89 then '良好'
when fen >= 70 and fen <= 79 then '中等'
when fen >= 60 and fen <= 69 then '及格'
when fen <= 59 then '不合格' end ) as [水平]
from tablename
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询