declare @t table(名称 varchar(1) , 出版商 varchar(10), 价格1 int, 价格2 int) insert @t select 'a', '北京', 11, 22 union all select 'a', '四川', 22, 33 union all select 'b', '四川', 12, 23 union all select 'b', '北京', 10, 20 union all select 'b', '昆明', 20, 30 select 名称, 出版商, sum(价格1) as 价格1, sum(价格2) as 价格2, grouping(名称) as check名称, grouping(出版商) as check出版商 from @t group by 名称,出版商 with cube select 名称, 出版商, sum(价格1) as 价格1, sum(价格2) as 价格2 from @t group by 名称,出版商 with rollup
用户登录
还没有账号?立即注册
用户注册
投稿取消
文章分类: |
|
还能输入300字
上传中....