PERCENT_RANK Function Examples | Teradata Vantage - 17.10 - Example: Relative Rank - Advanced SQL Engine - Teradata Database

Teradata Vantageā„¢ - SQL Functions, Expressions, and Predicates

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-28
dita:mapPath
SQL_Functions__Expressions__and_Predicates.Upload_071421/djk1612415574830.ditamap
dita:ditavalPath
SQL_Functions__Expressions__and_Predicates.Upload_071421/wrg1590696035526.ditaval
dita:id
kby1472250656485

Determine the relative rank, called the percent_rank, of Christmas sales.

The following query:

   SELECT sales_amt, 
   PERCENT_RANK() OVER (ORDER BY sales_amt)
   FROM xsales;

might return the following results. Note that the relative rank is returned in ascending order, the default when no sort order is specified and that the currency is not reported explicitly.

sales_amt Percent_Rank
100.00 0.000000
120.00 0.125000
130.00 0.250000
140.00 0.375000
143.00 0.500000
147.00 0.625000
150.00 0.750000
155.00 0.875000
160.00 1.000000