aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/select_win_count_all.sql
blob: 63296342ee82921fc7093a01474546ee1fb11c86 (plain) (blame)
1
2
3
4
5
6
7
8
--!syntax_pg
select x,y,count(*) over w 
from (values (1,2),(1,3),(2,4),(2,5)) as a(x,y)
window w as ();

select x,y,count(*) over w 
from (values (1,2),(1,3),(2,4),(2,5)) as a(x,y)
window w as (order by y);