oracle按照指定列分组合计group by rollup()

group by rollup() 按分组合计

select grouping(status),status,owner,object_type,count(*) from dba_objects

where owner not in ('SYS','SYSTEM')

group by rollup (status,owner,object_type)

order by status,owner,object_type;

经典分类查询语句:

select object_type,count(*) from

( select decode(object_type,'TABLE','TABLE','INDEX','INDEX','OTHERS') object_type from dba_objects )

group by rollup(object_type);

posted @ 2018-02-03 22:27  秦先生的客栈  Views(1943)  Comments(0Edit  收藏  举报