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