SQL集合函数中case when then 使用技术
发布时间:2021-12-25 00:00:02 所属栏目:MsSql教程 来源:互联网
导读:那么在集合函数中它有什么用呢 ? 假设数据库有一张表名为student的表。 如果现在要你根据这张表,查出江西省男女个数,广东省男生个数,浙江省男女个数 怎么写SQL语句?即要生成下结果表 答案是:select sex ,count ( case province when 广东省 then 广东
那么在集合函数中它有什么用呢 ? 假设数据库有一张表名为student的表。 如果现在要你根据这张表,查出江西省男女个数,广东省男生个数,浙江省男女个数 怎么写SQL语句?即要生成下结果表 答案是:select sex ,count ( case province when '广东省' then '广东省' end )as 广东省 ,count ( case province when '江西省' then '江西省' end )as 江西省 ,count ( case province when '浙江省' then '浙江省' end )as 浙江省 from student group by sex count()函数即根据给定的范围和group by(统计方式) 而统计行数据的条数 我们一步步来理解上面语句 1. select sex from student (查询数据表中的存在的男女条数) 2.select sex, count (*) as num from student group by sex (查询表中男女数量) 3.select sex ,province, count (*)as num from student group by sex,province (查询各省男女数量) 重点来了,如果我把count(*) 中的 *号换成任一列名呢? 如count(province) 会怎样? 4.select sex ,province, count (province)as num from student group by sex,province (查询各省男女数量) 结果跟上图一样:这说明换不换都一样。又有count (province)等价于 count(case province when '浙江省' then '浙江省' else province end ) 但是如果我们缩小范围呢即count(case province when '浙江省' then '浙江省' end ) 那么请看下面 5.select sex ,province, count ( case province when '浙江省' then '浙江省' end )as num from student group by sex,province 即统计男女数量范围限定在浙江省 再精简一下即下面 6.select sex, count ( case province when '浙江省' then '浙江省' end ) as 浙江省 from student group by sex 已经接近我们的要求了,现在只要加上另几个字段就是了 7.select sex ,count ( case province when '广东省' then '广东省' end )as 广东省 ,count ( case province when '江西省' then '江西省' end )as 江西省 ,count ( case province when '浙江省' then '浙江省' end )as 浙江省 from student group by sex 小结:当然实现有很多种方法 可以多个子查询拼接起来也不无可厚非。我这只是一种思路 补充:case when then 知识点 (1) select (case province when '浙江省' then '浙江' when '江西省' then '江西' end ) as 省份 from student 如果默认范围如果没全包含则为空 像上图的广东省为空 (2)select (case province when '浙江省' then '浙江' when '江西省' then '江西' else province end ) as 省份 from student (编辑:锡盟站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- sql-server – SQL Server中的大量数据和性能
- sql-server – 在Sql Server中,有没有办法检查选定的一组行
- sql-server – 如何使用外部SQL数据库中的数据填充SharePoi
- sql-server – 根据Sql Server中的选定行生成插入脚本?
- sql创建数据库有中文乱码是啥原因?如何处理?
- sql-server – 什么时候创建STATISTICS而不是创建索引更好?
- sql – 修剪包含错误数据的列
- 在sql中找到同一个表中两个连续行之间的时间差
- sql-server – SSD上的SQL Server数据库 – 对于每个表的单
- sql-server – 帮助安装SQL Server 2017 – VS Shell安装失
站长推荐
热点阅读