码迷,mamicode.com
首页 > 其他好文 > 详细

case when then 随手练_1

时间:2020-06-07 15:03:12      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:var   --   cas   12px   ima   str   drop   inf   value   

CASE WHEN THEN随手练,就当做练习指法吧

--drop table tbStudent
GO
Create table tbStudent(
    studentId int identity(1,1),
    fSex varchar(12),
    fProvince varchar(32)
)
GO
INSERT INTO tbStudent(fsex,fProvince)
               values(,江西省),
                     (,广东省),
                     (,浙江省),
                     (,江西省),
                     (,浙江省),
                     (,浙江省)
select *
from tbStudent
---------------------------------------------------------------------
--要查出:江西、广东、浙江 男女个数
select fSex,
          count(case when fProvince=江西省 then 江西省 end) as 江西省,
          count(case when fProvince=广东省 then 江西省 end) as 广东省,
          count(case when fProvince=浙江省 then 江西省 end) as 浙江省
from tbStudent
group by fSex
---------------------------------------------------------------------
--要查出:江西、广东、浙江 男女个数
select fSex,
          count(case fProvince when 江西省 then 江西省 end) as 江西省,
          count(case fProvince when 广东省 then 江西省 end) as 广东省,
          count(case fProvince when 浙江省 then 江西省 end) as 浙江省
from tbStudent
group by fSex
---------------------------------------------------------------------

---------------------------------------------------------------------

 运行结果:select * from tbStudent                        CASE WEHN THEN之后

          技术图片                                         技术图片

 

case when then 随手练_1

标签:var   --   cas   12px   ima   str   drop   inf   value   

原文地址:https://www.cnblogs.com/CDPJ/p/13060410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!