当前位置: 首页 > 图文教程 > 数据库 > MYSQL > 浅谈MySQL数据库中如何解决分组统计的问题

MYSQL
MySQL安全性指南
linux下建立mysql镜像数据库
Mysql备份脚本
MySQL的DBI/DBD简明安装手册
Mysql中左连接的使用
MySQL管理介绍
采用ODBC接口访问MySQL指南
MySQL UDF调试方式debugview
MySQL数据目录结构
MySQL数据导入导出方法与工具介绍
MySQL服务维护笔记(上)
跟着lanche学MySQL
MYSQL初学者使用指南
MySQL数据库的漏洞相当于其它数据库1/4
通过Mysql的语句生成后门木马的方法
怎样使MySQL安全以对抗解密高手
MySQL3.23.31之前版本的安全漏洞
MySQL安全问题(匿名用户)的一点心得
通过mysql入侵NT和win2000
Mysql数据库的安全配置、实用技巧

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-30   浏览: 97 ::
收藏到网摘: n/a

 首先准备四张表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    
--------------------------------

  下面我们需要用一条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语句解决:


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