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

MYSQL
MySQL/Postgrsql 详细讲解如何用ODBC接口访问MySQL指南
MySQL 升级方法指南大全
在Windows平台上升级MySQL注意事项
mysql常见问题解决
mysql数据库远程访问设置方法
发现mysql一个用法,比较有用
MySQL 视图 第1349号错误解决方法
mysql 远程连接数据库的方法集合
MySQL服务器的启动和关闭
MySQL进阶SELECT语法篇
MySQL里面的子查询实例
mysql的日期和时间函数大全
MySQL的数据类型和建库策略分析详解
MySQL的语法及其使用指南
mysql仿asp的数据库操作类
C#列出局域网中可用SQL Server服务器
C#编写方法实例
MySQL5.0存储过程教程
MySQL取出随机数据
mysql创建Bitmap_Join_Indexes中的约束与索引

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-30   浏览: 80 ::
收藏到网摘: 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