Oracle子查詢第一行與最後一行相運算

來源:互聯網
上載者:User

引言:

處理流水帳類似記錄的時候,可能常遇到“在某個表值上,取首尾記錄進行運算”的情況。比如:打卡記錄,期末對期初增幅等。因此,筆者向大夥推薦一個Oracle的keep文法。

特別地感謝一下oracle群的驢兄和溫州·名次兄的指點。

本文:

直接上範例:

  1. select max(t_.dummy) keep(dense_rank first order by t_.code desc) - max(t_.dummy) keep(dense_rank last order by t_.code desc)   
  2.   from (select 6 as code, 6666 as dummy   
  3.           from dual   
  4.         union  
  5.         select 9 as code, 9999   
  6.           from dual   
  7.         union  
  8.         select 41 as code, 414141 from dual) t_;  

相關文章

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.