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

MYSQL
MS SQL大值数据类型varchar(max)、nvarchar(max)、varbinary(max)
MySQL索引经验之浅见
提高MySQL 查询效率的三个技巧(1)
提高MySQL 查询效率的三个技巧(2)
提高MySQL 查询效率的三个技巧(3)
MySQL中的mysqldump命令使用详解
Linux下mysql的C API简单使用
MYSQL 有条件地插入记录
mysql 注释方法
MySQL备份--使用mysqldump全备
Mysql索引
5种方法优化MySQL插入表格查询
java实现插入mysql二进制文件,blob类型,遇到问题及解决办法
mysql中root用户的密码修改和消除
完全优化MySQL数据库性能的八大巧方法
MySQL与标准的兼容性
优化MYSQL服务器
MYSQL 权限
Mysql 基本用法
Mysql 备份与恢复

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


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