Window Functions
This page contains window functions supported by e6data.
Ranking Functions
RANK()
rank() over(order by a)
rank() over(partition by a order by b)DENSE_RANK()
dense_rank() over(order by a)
dense_rank() over(partition by a order by b)ROW_NUMBER()
row_number() over(order by a)
row_number() over(partition by a order by b)NTILE( n )
ntile(n) over(order by a)
ntile(n) over(partition by a order by b)Value Functions
FIRST_VALUE( <expr> )
LAST_VALUE( <expr> )
LEAD( <expr>, offset )
LAG( <expr>, offset )
Window Frame Functions
Other Functions
COLLECT_LIST()
Usage Examples:
Limitations:
Last updated
