Oracle 分組統計,抽取每組前十

來源:互聯網
上載者:User

標籤:類別   類型   esc   HERE   from   sele   2018年   2017年   行業   

/**
2018年6月14日 潮州
ORACEL 統計2017年用電量,按行業分類抽取用電量前十
*/
select *
from (select t.yhbh 使用者編號,
t.yhmc 使用者名稱稱,
t.jldbh 計量點編號,
(select m.dmbmmc
from npmis_xt_dmbm m
where m.dmfl = ‘YDLXDM‘
and m.dmbm = t.ydlbdm) 用電類型,
(select m.dmbmmc
from npmis_xt_dmbm m
where m.dmbmbs = (select m.sjdmbmbs
from npmis_xt_dmbm m
where m.dmfl = ‘HYFLDM‘
and m.dmbm = t.hyfldm)) 上級行業分類,
(select m.dmbmmc
from npmis_xt_dmbm m
where m.dmfl = ‘HYFLDM‘
and m.dmbm = t.hyfldm) 行業分類,
sum(t.jfdl) 總計費電量,
row_number() over(partition by t.hyfldm order by sum(t.jfdl) desc) 本行業排名
from npmis_hs_jldxx t
where t.dfny like ‘2017%‘
and t.ydlbdm in (‘100‘, ‘200‘, ‘260‘, ‘300‘) /**用電類別為:大工業、非普通工業、非工業、商業*/
and t.jfdl <> 0 /**計費電量不為0*/
and t.yhztdm <> ‘2‘ /**使用者狀態不為銷戶*/
group by t.yhbh, t.yhmc, t.jldbh, t.ydlbdm, t.hyfldm
having sum(t.jfdl) > 500000
order by 總計費電量)
where 本行業排名 < 11;

Oracle 分組統計,抽取每組前十

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.