排名
5
文章
229
粉丝
15
评论
7
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:
50010702506256


欢迎加群交流技术

第一种:匹配具体的值
-- case when
select username,sex,age,country,
case country
when '蜀国' then '刘备'
when '魏' then '曹操'
when '宋' then '赵匡胤'
else '其他' end
as '领导人'
from users
第二种:匹配一个范围条件
-- 显示考试成绩的等级
select username,sub,score,
case
when score=150 then '满分'
when score>=130 then '优秀'
when score>=110 then '良好'
when score>=90 then '及格'
else '不及格' end
from score where username = '诸葛亮'
执行结果:
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)
评价