Oracle Analytic functions-rank functions

Source: Internet
Author: User
Tags dname

SELECT b.*,
RANK () over (PARTITION by B.dname ORDER by B.sal) as Rank_num,
Dense_rank () over (PARTITION by B.dname ORDER by B.sal) as Dence_rank,
MIN (SAL) KEEP (Dense_rank first ORDER by B.sal) through (PARTITION by B.dname) as First_val,
MAX (SAL) KEEP (Dense_rank last ORDER by B.sal) through (PARTITION by B.dname) as Last_val,
LAG (Sal, 1, 0) over (PARTITION by B.dname ORDER by B.sal) as Pre_val,
Leads (SAL, 1, 0) over (PARTITION by B.dname ORDER by B.sal) as Following_val,
First_value (B.sal) over (PARTITION by B.dname ORDER by B.sal) as First_val,
First_value (B.sal) over (PARTITION by B.dname ORDER by B.sal DESC) as First_val_desc,
Last_value (B.sal) over (PARTITION by B.dname ORDER by B.sal) as Last_val,
Last_value (B.sal) over (PARTITION by B.dname ORDER by B.sal DESC) as Last_val_desc,
Row_number () over (PARTITION by B.dname ORDER by B.sal) as Row_num
From B

Oracle Analytic functions-rank functions

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.