|< < 12 > >|

Duplicates

Elimination of duplicates

Duplicates can be eliminated from a query result.
jao=# select x from dups_ok; x ----- 100 100 (2 rows) jao=# select distinct x from dups_ok; x ----- 100 (1 row)

|< < 12 > >|