RANK
Translation specification for the transformation of the RANK() function
Description
Teradata syntax
RANK ( sort_expression [ ASC | DESC ] [,...] )Snowflake syntax
RANK() OVER
(
[ PARTITION BY <expr1> ]
ORDER BY <expr2> [ { ASC | DESC } ]
[ <window_frame> ]
)Sample Source Pattern
Setup data
Teradata
Snowflake
RANK() using ASC, DESC, and DEFAULT order
Teradata
SALES
SALESASC
SALESDESC
SALESDEFAULT
Snowflake
SALES
SALESASC
SALESDESC
SALESDEFAULT
Last updated
Was this helpful?