Oracle查询指定日期区间内不同工资水平区间员工的平均工资


具体一点,我有一个表sda,我想查询sda表内在13年1月到6月之间每个月工资高于5000的员工的平均工资,工资在3000到5000之间的员工的平均工资和工资在2000到3000之间的员工的平均工资。

我现在能写出来某个月里面的平均数据


 select sum(case when(a.cpcavg>=5000) then a.cpcavg end) bb, 

count(case when(a.cpcavg>=500) then a.cpcavg end)bb2,

sum(case when(a.cpcavg>=50 and a.cpcavg<500) then a.cpcavg end) cc,

count(case when(a.cpcavg>=50 and a.cpcavg<500) then a.cpcavg end) cc2 ,

sum(case when(a.cpcavg>=10 and a.cpcavg<50) then a.cpcavg end) dd,

count(case when(a.cpcavg>=10 and a.cpcavg<50) then a.cpcavg end) dd2,

sum(case when(a.cpcavg<10) then a.cpcavg end) ee,

count(case when(a.cpcavg<10) then a.cpcavg end) ee2,
from
(
    select  sda.accountid,           

    cast ( sum(sda.cpcconsume/100)/to_char(last_day(to_date('20130101','yyyy-mm-dd')),'dd') as number(12,2) ) cpcavg

    from  queryman.stat_day_account sda, queryman.account acc

    where  sda.cpcconsume>0 and sda.accountid=acc.i_account_id and acc.     agent_type=1 and acc.classify in (1,2,3)

    and sda.createdate>=to_date('20130101','yyyymmdd') 

    and sda.createdate<to_date('20130131','yyyymmdd') 

    group by sda.accountid
) a

我现在可以计算出1月份每个区间员工的数据(符合条件的员工的平均工资之和和这些员工的个数)
我的问题是:

1.如何利用bb,bb2这些数计算出来平均数据
2.如何在一条sql语句中计算出来所有6个月的数据,而不是想现在这样把日期写死在语句中,每算一个月都要手动修改语句。

sql oracle

天朝萌化大神 10 years, 4 months ago

Your Answer