1、流程操作次数(条形图)
select * from (select (select lastname from hrmresource where id =userid),count(*) as 流程操作人次数 from workflow_currentoperator group by userid order by count(*) desc)where rownum<=10
sqlserver:select top 10* from (select (select lastname from hrmresource where id =userid),count(*) as 流程操作人次数 from workflow_currentoperator group by userid order by count(*) desc)
2、各单位人数比(饼图 3D)
select * from (select(select subcompanyname from hrmsubcompany where id=subCompanyId1),count(id) As cids from hrmresource group by subCompanyId1 order by cids desc)where rownum<=10
sqlserver:select top 10* from (select(select subcompanyname from hrmsubcompany where id=subCompanyId1),count(id) As cids from hrmresource group by subCompanyId1 order by cids desc)
3、登陆次数排名(面积图 '2012-07-01' 到 '2012-08-20'之间的)
select * from (select relatedname,count(*) as 系 统 登 陆 次 数 from
SysMaintenanceLog where operatetype = 6 a

最低0.47元/天 解锁文章
2016

被折叠的 条评论
为什么被折叠?



