Postgres: Distinct but only for one column Postgres: Distinct but only for one column postgresql postgresql

Postgres: Distinct but only for one column


To do a distinct on only one (or n) column(s):

select distinct on (name)    name, col1, col2from names

This will return any of the rows containing the name. If you want to control which of the rows will be returned you need to order:

select distinct on (name)    name, col1, col2from namesorder by name, col1

Will return the first row when ordered by col1.

distinct on:

SELECT DISTINCT ON ( expression [, ...] ) keeps only the first row of each set of rows where the given expressions evaluate to equal. The DISTINCT ON expressions are interpreted using the same rules as for ORDER BY (see above). Note that the “first row” of each set is unpredictable unless ORDER BY is used to ensure that the desired row appears first.

The DISTINCT ON expression(s) must match the leftmost ORDER BY expression(s). The ORDER BY clause will normally contain additional expression(s) that determine the desired precedence of rows within each DISTINCT ON group.


Anyone knows how to fetch many columns but do only a distinct on one column?

You want the DISTINCT ON clause.

You didn't provide sample data or a complete query so I don't have anything to show you. You want to write something like:

SELECT DISTINCT ON (name) fields, id, name, metadata FROM the_table;

This will return an unpredictable (but not "random") set of rows. If you want to make it predictable add an ORDER BY per Clodaldo's answer. If you want to make it truly random, you'll want to ORDER BY random().


SELECT NAME,MAX(ID) as ID,MAX(METADATA) as METADATA from SOMETABLEGROUP BY NAME