sql中case when语句用法教程详解

发布时间:2020-09-24编辑:脚本学堂
有关sql数据库中case when语句的用法,在sql2005数据库中case when else end语句用途广泛,可用于复杂的、分条件sql查询语句中,需要的朋友参考下。

sql中case when语句的使用方法

这是小编偶然发现的一篇有关sql数据库中case when语句的教程,例子很全面,知识面涉及的很多,尤其介绍了一些复杂的sql查询语句中case when的用法,可以帮助你解决一些棘手的sql查询问题。

case函数具有两种格式:简单case函数和case搜索函数。 
sql语句:
 

--简单case函数 
case sex  
         when '1' then '男'  
         when '2' then '女'  
else '其他' end  
--case搜索函数 
case when sex = '1' then '男'  
     when sex = '2' then '女'  
else '其他' end  
 

这两种方式,可以实现相同的功能。
简单case函数的写法相对比较简洁,但是和case搜索函数相比,功能方面会有些限制,比如写判断式。 
注意,case函数只返回第一个符合条件的值,剩下的case部分将会被自动忽略。 
 

--比如说,下面这段sql,你永远无法得到“第二类”这个结果 
case when col_1 in ( 'a', 'b') then '第一类'  
         when col_1 in ('a')       then '第二类'  
else'其他' end  
 

使用case函数都能做些什么事情。 
一,已知数据按照另外一种方式进行分组,分析。 
有如下数据:(为了看得更清楚,我并没有使用国家代码,而是直接用国家名作为primary key)  
 

国家(country)人口(population) 
中国600  
美国100  
加拿大100  
英国200  
法国300  
日本250  
德国200  
墨西哥50  
印度250  
 

根据这个国家人口数据,统计亚洲和北美洲的人口数量。应该得到下面这个结果。 
 

洲人口 
亚洲1100  
北美洲250  
其他700  
 

想要解决这个问题,你会怎么做?生成一个带有洲code的view,是一个解决方法,但是这样很难动态的改变统计的方式。 
如果使用case函数,sql代码:  
 

select  sum(population),  
        case country  
                when '中国'     then '亚洲'  
                when '印度'     then '亚洲'  
                when '日本'     then '亚洲'  
                when '美国'     then '北美洲'  
                when '加拿大'  then '北美洲'  
                when '墨西哥'  then '北美洲'  
        else '其他' end  
from    table_a  
group by case country  
                when '中国'     then '亚洲'  
                when '印度'     then '亚洲'  
                when '日本'     then '亚洲'  
                when '美国'     then '北美洲'  
                when '加拿大'  then '北美洲'  
                when '墨西哥'  then '北美洲'  
        else '其他' end;  
 

同样也可以用这个方法来判断工资的等级,并统计每一等级的人数。

sql代码; 
 

select  
        case when salary <= 500 then '1'  
             when salary > 500 and salary <= 600  then '2'  
             when salary > 600 and salary <= 800  then '3'  
             when salary > 800 and salary <= 1000 then '4'  
        else null end salary_class,  
        count(*)  
from    table_a  
group by  
        case when salary <= 500 then '1'  
             when salary > 500 and salary <= 600  then '2'  
             when salary > 600 and salary <= 800  then '3'  
             when salary > 800 and salary <= 1000 then '4'  
        else null end;  

二,用一个sql语句完成不同条件的分组。 
有如下数据 
 

国家(country)性别(sex)人口(population) 
中国1 340  
中国2 260  
美国1 45  
美国2 55  
加拿大1 51  
加拿大2 49  
英国1 40  
英国2 60  
 

按照国家和性别进行分组,得出结果如下 
 

国家男女 
中国340 260  
美国45 55  
加拿大51 49  
英国40 60  
 

普通情况下,用union也可以实现用一条语句进行查询。但是那样增加消耗(两个select部分),而且sql语句会比较长。 

一个是用case函数来完成这个功能的例子 
 

select country,  
       sum( case when sex = '1' then  
                      population else 0 end),  --男性人口 
       sum( case when sex = '2' then  
                      population else 0 end)   --女性人口 
from  table_a  
group by country;  
 

这样使用select,完成对二维表的输出形式,充分显示了case函数的强大。 

三,在check中使用case函数。 
在check中使用case函数在很多情况下都是非常不错的解决方法。可能有很多人根本就不用check,那么建议在sql中使用check。 

例子,公司a,这个公司有个规定,女职员的工资必须高于块。
如果用check和case来表现的话,如下: 
 

constraint check_salary check  
           ( case when sex = '2'  
                  then case when salary > 1000  
                        then 1 else 0 end  
                  else 1 end = 1 )  
 

如果单纯使用check,如下:
 

constraint check_salary check  
           ( sex = '2' and salary > 1000 )  
 

女职员的条件倒是符合了,男职员就无法输入了。 

四,根据条件有选择的update。 
例,有如下更新条件 
工资以上的职员,工资减少%  
工资在到之间的职员,工资增加%  
很容易考虑的是选择执行两次update语句,如下所示 
 

--条件 
update personnel 
set salary = salary * 0.9 
where salary >= 5000; 
--条件 
update personnel 
set salary = salary * 1.15 
where salary >= 2000 and salary < 4600; 

假设有个人工资块。首先,按照条件,工资减少%,变成工资。接下来运行第二个sql时候,因为这个人的工资是在到的范围之内,需增加%,最后这个人的工资结果是,不但没有减少,反而增加了。如果要是反过来执行,那么工资的人相反会变成减少工资。暂且不管这个规章是多么荒诞,如果想要一个sql 语句实现这个功能的话,我们需要用到case函数。代码如下:  
 

update personnel 
set salary = case when salary >= 5000 
            then salary * 0.9 
when salary >= 2000 and salary < 4600 
then salary * 1.15 
else salary end; 

注意,最后一行的else salary是必需的,要是没有这行,不符合这两个条件的人的工资将会被写成null。
在case函数中else部分的默认值是null,这点是需要注意的地方。 
这种方法还可以在很多地方使用,比如说变更主键这种累活。 
一般情况下,要想把两条数据的primary key,a和b交换,需要经过临时存储,拷贝,读回数据的三个过程,要是使用case函数的话,一切都变得简单多了。 
p_key col_1 col_2  
a 1 张三 
b 2 李四 
c 3 王五 

假设有如上数据,需要把主键a和b相互交换。用case函数来实现的话,代码: 
 

update sometable 
set p_key = case when p_key = 'a' 
then 'b' 
when p_key = 'b' 
then 'a' 
else p_key end 
where p_key in ('a', 'b'); 
 

同样的也可以交换两个unique key。需要注意的是,如果有需要交换主键的情况发生,多半是当初对这个表的设计进行得不够到位,建议检查表的设计是否妥当。 

五,两个表数据是否一致的检查。 
case函数不同于decode函数。
在case函数中,可以使用between,like,is null,in,exists等等。
比如说使用in,exists,可以进行子查询,从而实现更多的功能。 

例子,有两个表,tbl_a,tbl_b,两个表中都有keycol列。

现在,对两个表进行比较,tbl_a中的keycol列的数据如果在tbl_b的keycol列的数据中可以找到,返回结果'matched',如果没有找到,返回结果'unmatched'。 

sql语句:
 

--使用in时 
select keycol, 
case when keycol in ( select keycol from tbl_b ) 
then 'matched' 
else 'unmatched' end label 
from tbl_a; 
--使用exists时 
select keycol, 
case when exists ( select * from tbl_b 
where tbl_a.keycol = tbl_b.keycol ) 
then 'matched' 
else 'unmatched' end label 
from tbl_a; 
 

使用in和exists的结果是相同的。也可以使用not in和not exists,要注意null的情况。 

六,在case函数中使用合计函数 
假设有下面一个表 
 

学号(std_id) 课程id(class_id) 课程名(class_name) 主修flag(main_class_flg)  
100 1 经济学y  
100 2 历史学n  
200 2 历史学n  
200 3 考古学y  
200 4 计算机n  
300 4 计算机n  
400 5 化学n  
500 6 数学n  
 

有的学生选择了同时修几门课程(100,200)也有的学生只选择了一门课程(300,400,500)。
选修多门课程的学生,要选择一门课程作为主修,主修flag里面写入y。只选择一门课程的学生,主修flag为n(实际上要是写入y的话)。 
现在,要按照下面两个条件对这个表进行查询 
只选修一门课程的人,返回那门课程的id  
选修多门课程的人,返回所选的主课程id  
简单的想法就是,执行两条不同的sql语句进行查询。 
条件 
 

--条件:只选择了一门课程的学生 
select std_id, max(class_id) as main_class 
from studentclass 
group by std_id 
having count(*) = 1; 

执行结果: 
std_id   main_class 
------   ---------- 
300      4 
400      5 
500      6 
条件 
 

--条件:选择多门课程的学生 
select std_id, class_id as main_class 
from studentclass 
where main_class_flg = 'y' ; 

执行结果: 
std_id  main_class 
------  ---------- 
100     1 
200     3 

如果使用case函数,只要一条sql语句即可:
 

select  std_id, 
case when count(*) = 1  --只选择一门课程的学生的情况 
then max(class_id) 
else max(case when main_class_flg = 'y' 
then class_id 
else null end 

end as main_class 
from studentclass 
group by std_id; 

运行结果:
std_id   main_class 
------   ---------- 
100      1 
200      3 
300      4 
400      5 
500      6 
通过在case函数中嵌套case函数,在合计函数中使用case函数等方法,可以轻松解决此问题。使用case函数有很大自由度。 

使用case函数的新手容易犯的错误:
 

case col_1 
when 1       then 'right' 
when null  then 'wrong' 
end 
 

在这个语句中when null这一行总是返回unknown,所以永远不会出现wrong的情况。
因为这句可以替换成when col_1 = null,这是一个错误的用法,此时应该选择用when col_1 is null。 

更多有关case when语句的用法, 请点这里,以加深对case when语句的了解。