您好,登录后才能下订单哦!
本篇文章为大家展示了如何在SQL中对同一个字段不同值进行数据统计,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
应用场景: 需要根据印章的不同状态,统计不同状态下印章数量。
select b.corporateOrgName, b.corporateOrgGuid companyId, count(case when bc.ftype not in(1,2) then 1 else 0 end ) total, count(case when bc.ftype in(3,4,5) then 1 else 0 end ) usetotal, count(case when bc.ftype = 6 then 1 else 0 end ) saveTotal, count(case when bc.ftype = 7 then 1 else 0 end ) returnTotal from B_seal_cycle bc join B_seal b on bc.sealId = b.id where b.corporateOrgName like '%%' group by b.corporateOrgName,b.corporateOrgGuid
逻辑上通了,可就是怎么都得不到理想的接口,这样写统计的每一个数据都一样呀。改变之后的正确写法
select b.corporateOrgName, b.corporateOrgGuid companyId, count(case when bc.ftype not in(1,2) then 1 end ) total, count(case when bc.ftype in(3,4,5) then 1 end ) usetotal, count(case when bc.ftype = 6 then 1 end ) saveTotal, count(case when bc.ftype = 7 then 1 end ) returnTotal from B_seal_cycle bc join B_seal b on bc.sealId = b.id where b.corporateOrgName like '%%' group by b.corporateOrgName,b.corporateOrgGuid
你看出不同之处了嘛? 把else 0 去掉就得到了正确的结果。
遇到的问题
1、 对case when 语法,解读有误。
加了else 之后,总会对结果取 1 或 0.
2、 count函数都会对不管1 或 0 进行统计。
3、 当加了else 0 之后,可以通过sum函数进行统计。
也可以这样写
select b.corporateOrgName, b.corporateOrgGuid companyId, sum(case when bc.ftype not in(1,2) then 1 else 0 end ) total, sum(case when bc.ftype in(3,4,5) then 1 else 0 end ) usetotal, sum(case when bc.ftype = 6 then 1 else 0 end ) saveTotal, sum(case when bc.ftype = 7 then 1 else 0 end ) returnTotal from B_seal_cycle bc join B_seal b on bc.sealId = b.id where b.corporateOrgName like '%%' group by b.corporateOrgName,b.corporateOrgGuid
有问题,或者有更好的写法,感谢留言指出。
补充知识:SQL语言中 执行语句 DESC与DESCRIBE有什么区别?
DESCRIBE TABLE 用于列出指定表或视图中的所有列。
DESCRIBE INDEX FOR TABLE 用于列出指定表的所有索引,
所以 DESCRIBE是用来显示数据结构信息的;
而desc是descend ,是用于查询出结果时候对结果进行排序,是降序排序。
DESCRIBE 是 SHOW COLUMNS FROM 的缩写。
DESCRIBE 提供有关一个表的列信息。col_name 可以是一个列名或是一个包含 SQL 通配符字符 “%” 和 “_” 的字符串。没有必要用引号包围字符串。
一、describe命令用于查看特定表的详细设计信息
例如为了查看guestbook表的设计信息,可用:
describe guestbook describe ol_user userid
二、可通过”show comnus”来查看数据库中表的列名
有两种使用方式:
show columns form 表名 from 数据库名
或者:
show columns from 数据库名.表名
三、用describe命令查询具体列的信息
describe guestbook id 就是查询guestbook中id字段的列信息
{DESCRIBE | DESC } tbl_name [col_name | wild]
DESCRIBE 是 SHOW COLUMNS FROM 的缩写。
DESCRIBE 提供有关一个表的列信息。col_name 可以是一个列名或是一个包含 SQL 通配符字符 “%” 和 “_” 的字符串。没有必要用引号包围字符串。
mysql> desc ol_user username\G
四、判断字段是否存在
mysql_connect( 'localhost' , 'root' , 'root' ); mysql_select_db( 'demo' ); $test = mysql_query( 'Describe cdb_posts first' ); $test = mysql_fetch_array($test);
$test[0]返回的是该字段的名称,比如我要查询first字段,返回的就是first
如果此字段不存在返回的就是NULL,通过这样可以判断一个字段是否存在
上述内容就是如何在SQL中对同一个字段不同值进行数据统计,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。