aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/window/win_func_percent_rank.sql
blob: f249d901e36103ef642ad855737b6d66ff5aa656 (plain) (blame)
1
2
3
4
5
6
7
8
select
r,x,
percent_rank() over w,
percent_rank(x) over w,
from (select * from (values (1,null),(2,3),(3,4),(4,4)) as a(r,x)) as z
window w as (order by r)
order by r