aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/select_having_same_agg.sql
blob: 2eb458681e22be1ee145d8c5cc432e7162d56048 (plain) (blame)
1
2
3
4
5
--!syntax_pg
select x,count(y)
from (values (1,2),(3,4),(3,5)) u(x,y)
group by x
having count(y)=2