CUBE,ROLLUP 和 GROUPING

1.用 cube 汇总数据

cube 运算符生成的结果集是多维数据集。多维数据集是事实数据的扩展,事实数据即记录个别事件的数据。扩展建立在用户打算分析的列上。这些列被称为维。多维数据集是一个结果集,其中包含了各维度的所有可能组合的交叉表格。

cube 运算符在 select 语句的 group by 子句中指定。该语句的选择列表应包含维度列和聚合函数表达式。group by 应指定维度列和关键字 with cube。结果集将包含维度列中各值的所有可能组合,以及与这些维度值组合相匹配的基础行中的聚合值。

例如,一个简单的表 inventory 中包含:

item                 color                quantity                  

——————– ——————– ————————–

table                blue                 124                       

table                red                  223                       

chair                blue                 101                       

chair                red                  210                       

我们先来准备测试表和数据

if object_id(n'inventory',n'u') is not null
    drop table inventory

create table inventory
(
item varchar(255),
color varchar(255),
quantity decimal(18,8)
)

--插入数据
insert into inventory
select 'chair','blue',101.00
union all
select 'chair', 'red',210.00
union all
select 'table','blue',124.00
union all
select 'table','red',223.00

 

下列查询返回的结果集中,将包含 itemcolor 的所有可能组合的 quantity 小计:

select item, color, sum(quantity) as qtysum

from inventory

group by item, color with cube

 

下面是结果集:

item                 color                qtysum                    

——————– ——————– ————————–

chair                blue                 101.00                    

chair                red                  210.00                    

chair                (null)               311.00                    

table                blue                 124.00                    

table                red                  223.00                    

table                (null)               347.00                     

(null)               (null)               658.00                    

(null)               blue                 225.00                    

(null)               red                  433.00                    

我们着重考查下列各行:

chair                (null)               311.00                    

这一行报告了 item 维度中值为 chair 的所有行的小计。对 color 维度返回了 null 值,表示该行所报告的聚合包括 color 维度为任意值的行。

table                (null)               347.00                    

这一行类似,但报告的是 item 维度中值为 table 的所有行的小计。

(null)               (null)               658.00                    

这一行报告了多维数据集的总计。itemcolor 维度的值都是 null,表示两个维度中的所有值都汇总在该行中。

(null)               blue                 225.00                    

(null)               red                  433.00                    

这两行报告了 color 维度的小计。两行中的 item 维度值都是 null,表示聚合数据来自 item 维度为任意值的行。

使用 grouping 区分空值

cube 操作所生成的空值带来一个问题:如何区分 cube 操作所生成的 null 值和从实际数据中返回的 null 值?这个问题可用 grouping 函数解决。如果列中的值来自事实数据,则 grouping 函数返回 0;如果列中的值是 cube 操作所生成的 null,则返回 1在 cube 操作中,所生成的 null 代表全体值。可将 select 语句写成使用 grouping 函数将所生成的 null 替换为字符串 all。因为事实数据中的 null 表明数据值未知,所以 select 语句还可译码为返回字符串 unknown 替代来自事实数据的 null。例如:

select case when (grouping(item) = 1) then 'all'

            else isnull(item, 'unknown')

       end as item,

       case when (grouping(color) = 1) then 'all'

            else isnull(color, 'unknown')

       end as color,

       sum(quantity) as qtysum

from inventory

group by item, color with cube

 

–小小的解释一下,如果grouping(item)如果是有值,那么grouping(item)=0,那么这一整段都不会执行,那么程序将继续往下走,来到sum(quantity) as qtysum这里,所以查出的结果也是有值的,所以值并不是all,all是当为null的时候,也就是某一字段全部sum的时候,明白了吗?这里我也花了一点时间才理解透,其实都很简单的–

多维数据集

cube 运算符可用于生成 n 维的多维数据集,即具有任意数目维度的多维数据集。只有一个维度的多维数据集可用于生成合计,例如:

select case when (grouping(item) = 1) then 'all'

            else isnull(item, 'unknown')

       end as item,

       sum(quantity) as qtysum

from inventory

group by item with cube

go

 

此 select 语句返回的结果集既显示了 item 中每个值的小计,也显示了 item 中所有值的总计:

item                 qtysum                    

——————– ————————–

chair                311.00                    

table                347.00                    

all                  658.00                    

包含带有许多维度的 cube 的 select 语句可能生成很大的结果集,因为这些语句会为所有维度中值的所有组合生成行。这些大结果集包含的数据可能过多而不易于阅读和理解。这个问题有一种解决办法是将 select 语句放在视图中:

create view invcube as

select case when (grouping(item) = 1) then 'all'

            else isnull(item, 'unknown')

       end as item,

       case when (grouping(color) = 1) then 'all'

            else isnull(color, 'unknown')

       end as color,

       sum(quantity) as qtysum

from inventory

group by item, color with cube

 

然后即可用该视图来只查询您感兴趣的维度值:

select *

from invcube

where item = 'chair'

  and color = 'all'

 

item                 color                qtysum                    

——————– ——————– ————————–

chair                all                  311.00                    

 

(1 row(s) affected)

2.用 rollup 汇总数据

在生成包含小计和合计的报表时,rollup 运算符很有用。rollup 运算符生成的结果集类似于 cube 运算符所生成的结果集。

cube 和 rollup 之间的区别在于:

  •     cube 生成的结果集显示了所选列中值的所有组合的聚合。
  •     rollup 生成的结果集显示了所选列中值的某一层次结构的聚合。

例如,简单表 inventory 中包含:

item                 color                quantity                  

——————– ——————– ————————–

table                blue                 124                       

table                red                  223                       

chair                blue                 101                       

chair                red                  210                       

下列查询将生成小计报表:

select case when (grouping(item) = 1) then 'all'

            else isnull(item, 'unknown')

       end as item,

       case when (grouping(color) = 1) then 'all'

            else isnull(color, 'unknown')

       end as color,

       sum(quantity) as qtysum

from inventory

group by item, color with rollup

 

item                 color                qtysum                    

——————– ——————– ————————–

chair                blue                 101.00                    

chair                red                  210.00                    

chair                all                  311.00                    

table                blue                 124.00                    

table                red                  223.00                    

table                all                  347.00                    

all                all               658.00                    

(7 row(s) affected)

如果查询中的 rollup 关键字更改为 cube,那么 cube 结果集与上述结果相同,只是在结果集的末尾还会返回下列两行:

all                  blue                 225.00                    

all                  red                  433.00                    

cube 操作为 itemcolor 中值的可能组合生成行。例如,cube 不仅报告与 item 值 chair 相组合的 color 值的所有可能组合(red、blue 和 red + blue),而且报告与 color 值 red 相组合的 item 值的所有可能组合(chair、table 和 chair + table)。

对于 group by 子句中右边的列中的每个值,rollup 操作并不报告左边一列(或左边各列)中值的所有可能组合。例如,rollup 并不对每个 color 值报告 item 值的所有可能组合。

rollup 操作的结果集具有类似于 compute by 所返回结果集的功能;然而,rollup 具有下列优点:

  • rollup 返回单个结果集;compute by 返回多个结果集,而多个结果集会增加应用程序代码的复杂性。
  • rollup 可以在服务器游标中使用;compute by 不可以。
  • 有时,查询优化器为 rollup 生成的执行计划比为 compute by 生成的更为高效。

3.grouping函数

是一个聚合函数,它产生一个附加的列,当用 cube 或 rollup 运算符添加行时,附加的列输出值为1,当所添加的行不是由 cube 或 rollup 产生时,附加列值为0

仅在与包含 cube 或 rollup 运算符的 group by 子句相联系的选择列表中才允许分组。

语法

grouping ( column_name )

参数

column_name

是 group by 子句中用于检查 cube 或 rollup 空值的列。

返回类型

int

注释

分组用于区分由 cube 和 rollup 返回的空值和标准的空值。作为cube 或 rollup 操作结果返回的 null 是 null 的特殊应用。它在结果集内作为列的占位符,意思是”全体”

示例

下面的示例将 royalty 的数值分组,并聚合 advance 的数值。grouping 函数应用于 royalty 列。

use pubs

select royalty, sum(advance) 'total advance',

   grouping(royalty) 'grp'

   from titles

   group by royalty with rollup

 

结果集在 royalty 下显示两个空值。第一个 null 代表从表中这一列得到的空值组。第二个 null 在 rollup 操作所添加的汇总行中。汇总行显示的是所有 royalty 组的 advance 合计数值,并且在 grp 列中用 1 标识。

下面是结果集:

royalty        total advance              grp

———      ———————    —

null           null                     0 

10             57000.0000               0 

12             2275.0000                0 

14             4000.0000                0 

16             7000.0000                0 

24             25125.0000               0 

null           95400.0000               1 

为了更清晰的搞明白,举个栗子看下rollup 、cube 不同

创建表:

create table depart   

(部门 char(10),员工 char(6),工资 int)

insert into depart select ‘a’,’zhang’,100   

insert into depart select ‘a’,’li’,200    

insert into depart select ‘a’,’wang’,300    

insert into depart select ‘a’,’zhao’,400    

insert into depart select ‘a’,’duan’,500    

insert into depart select ‘b’,’duan’,600    

insert into depart select ‘b’,’duan’,700

部门         员工         工资

a             zhang     100   

a             li             200    

a             wang      300    

a             zhao      400    

a             duan      500    

b             duan      600    

b             duan      700

(1)group by 

select 部门,员工,sum(工资)as total   

from depart    

group by 部门,员工

结果:

a             duan      500   

b             duan      1300    

a             li        200    

a             wang      300    

a             zhang     100    

a             zhao      400

(2)rollup

select 部门,员工,sum(工资)as total   

from depart    

group by  部门,员工  with rollup

结果:

a             duan       500   

a             li             200    

a             wang      300    

a             zhang     100    

a             zhao       400    

a             null        1500    

b             duan       1300    

b             null       1300    

null       null        2800

rollup结果集中多了三条汇总信息:即部门a的合计,部门b的合计以及总合计。其中将部门b中的duan合计。

等价于下列sql语句

select 部门,员工,sum(工资)as total   

from depart    

group by 部门,员工    

union    

select 部门,’null’,sum(工资)as total    

from depart    

group by  部门    

union    

select ‘null’,’null’,sum(工资)as total    

from depart

结果:

a             duan      500   

a             li           200    

a             null      1500    

a             wang      300    

a             zhang     100    

a             zhao       400    

b             duan      1300    

b             null       1300    

null       null        2800

(3)cube

select 部门,员工,sum(工资)as total   

from depart    

group by 部门,员工 with cube

结果:

a             duan      500   

a             li           200    

a             wang      300    

a             zhang     100    

a             zhao      400    

a             null      1500    

b             duan      1300    

b             null      1300    

null    null         2800    

null    duan        1800    

null    li               200    

null    wang       300    

null    zhang       100    

null    zhao         400

cube的结果集是在 rollup结果集的基础上多了5行,这5行相当于在rollup结果集上在union 上以员工 (即cube)为 group by的结果。

等价于下列的sql语句:

select 部门,员工,sum(工资)as total   

from depart    

group by  部门,员工  with rollup

union

select ‘null’,员工,sum(工资)as total   

from depart    

group by 员工

结果:

a             duan      500   

a             li           200    

a             wang      300    

a             zhang     100    

a             zhao      400    

a             null      1500    

b             duan      1300    

b             null      1300    

null    null         2800    

null    duan        1800    

null    li               200    

null    wang       300    

null    zhang       100    

null    zhao         400

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐