aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/distinct_on_multi_projection.sql
blob: 60b4e4577fdc3a9392a57568d0afdfd0bf314dc7 (plain) (blame)
1
2
3
4
5
6
--!syntax_pg
select 10 as u,20 as v
union all
select distinct on (x) x,y
from (values (1,1),(1,2),(2,5),(2,4)) a(x,y)
order by u,v desc