浅谈MySQL数据库中如何解决分组统计的问题

2016-02-19 15:29 7 1 收藏

下面,图老师小编带您去了解一下浅谈MySQL数据库中如何解决分组统计的问题,生活就是不断的发现新事物,get新技能~

【 tulaoshi.com - 编程语言 】

首先准备四张表A、B、C、D,

--------------------------------    
A      | B  | C   | D    
a   b   |   a   c   |   a   d   |   d   e    
1   1   |   1   1   |   1   A   |   A   1    
2   2   |   1   3   |   2   B   |   B   2    
3   4   |   1   4   |   3   C   |   C   3    
4   6   |   2   1   |   4   D   |   D   4    
--------------------------------

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  下面我们需要用一条sql语句将A表所有的列,B表对与A表a字段相关联的列求count,通过C表,将D表与A表关联起来,得到的结果如下:

1   1   3   1    
2   2   1   2    
3   4   0   3    
4   6   0   4

  Mysql语句解决:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

select A.a,A.b,IFNULL(c,0) as c,D.a
from (select 1 as a,2 as b union all
select 2 as a,2 as b union all
select 3 as a,4 as b union all
select 4 as a,6 as b) as A
left outer join    
(select a,count(a) as c from(
select 1 as a,3 as c union all
select 1 as a,3 as c union all
select 1 as a,3 as c union all
select 2 as a,3 as c ) B group by a) as B
on A.a=B.a
join
(select 1 as a,'A' as d union all
select 2 as a,'B' as d union all
select 3 as a,'C' as d union all
select 4 as a,'D' as d ) as C
on A.a=C.a
join(select 1 as a,'A' as d union all
select 2 as a,'B' as d union all
select 3 as a,'C' as d union all
select 4 as a,'D' as d ) as D
on D.d=C.d

来源:http://www.tulaoshi.com/n/20160219/1609756.html

延伸阅读
这是在VB.net中为连接MySql中编写的一个类库。你可以使用这个类库直接操作MySql数据库。 在使用这个类库之前,你必须安装 ODBC MYSQL 3.51下载地址:http://www.mysql.com/downloads/api-myodbc-3.51.html Driver ODBC.NET下载地址:http://www.microsoft.com/downloads/details.aspx?FamilyId=6CCD8427-1017-4F33-A062-D1...
标签: Web开发
如果你不是只在大集团公司工作过的话,你一定会有机会接触到MySQL,虽然它并不支持事务处理,存储过程,但是它提供的功能一定能满足你的大部分需求,另外,简洁的MySQL也有一些它独到的优势,在有些时候,它的速度甚至超过大型数据库。 那么如何在.NET中访问MySQL数据库呢?也许很多人马上会说:用OLEDB嘛,但是事实上采用.NET OleDb ...
1. 用您的会员名登录无忧空间站,左侧控制面板点击“自助管理”-“数据库”,选择您的数据库点“管理”,点击“高级管理” 2. 出现MYSQL高级管理登录框,用您的数据库用户名,密码登录,在登陆时,需要根据您的数据库编码选择对应的语言,一般可以选择“Chinese Simplified (zh-utf-8)”和“Chinese Simplified (zh-gb2312)”,根据你...
标签: 电脑入门
    问题1. An error occurred on the server when processing the URL.Please contact the system administrator 解决方法: 打开IIS7的asp设置,展开“调试属性”选项,“将错误发送到浏览器”这项默认的是False,改为True,然后会出现下面的错误: 问题2. 错误类型:ADODB.Connection (0x800A0E7A) 未找到提供程序的解决方...
笔者是一个中小Linux网站的管理员,系统构架是:RHEL 4.0 + PHP 4.3 + Mysql 4.03 +Apache 1.23。日均IP访问量在200次,一个典型的Linux小型网站。由于是小型网站,所以没有经费使用磁带机进行系统备份,使用的DVD光盘刻录机+网络硬盘。随着Linux的应用日益广泛,特别是在网络应用方面,有大量的网络服务器使用Linux操作系统。由于Linu...

经验教程

934

收藏

57
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部