aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/sql/select_distinct_on.sql
blob: b567830ea87aafc7544b50937bb7a3263d116b74 (plain)
1
2
3
4
5
6
7
8
--
-- test select distinct on
--
SELECT DISTINCT ON string4 two, string4, ten
	   FROM temp
   ORDER BY two using <, string4 using <, ten using <;