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

SQL Functions, Expressions, and Predicates

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-30
dita:mapPath
tpt1555966086716.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1145
lifecycle
previous
Product Category
Teradata Vantageā„¢

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