select 本月值, (本月值-上月值)/上月值 本月值環(huán)比
創(chuàng)新互聯(lián)建站是一家專(zhuān)業(yè)提供嘉禾企業(yè)網(wǎng)站建設(shè),專(zhuān)注與成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、HTML5建站、小程序制作等業(yè)務(wù)。10年已為嘉禾眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。
select 本月值, (select t3.本月值 from tb,ta t3 where ta.本月日期 = tb.本月日期 and tb.上月日期 = t3.本月日期) as 上月值
from ta
) aaa
substr(t.salarymonth, -2)) "同比",
sum(t.salary) /
(select sum(t1.salary)
from D_MONTH_SALARY t1
where t1.salarymonth =
to_char(to_date(t.salarymonth, 'yyyymm') - 1, 'yyyymm')) "環(huán)比"
from D_MONTH_SALARY t
group by t.salarymonth;
出累計(jì)環(huán)比 肯定要出累計(jì)值 這個(gè)事沒(méi)話說(shuō)的! 所以只能出到最細(xì)粒度的累積表 增量的最好! 這樣統(tǒng)計(jì)數(shù)據(jù)就比較靈活準(zhǔn)確性也較高