postgresHow to select unique (distinct) values from column
SELECT DISTINCT first_name FROM person;ctrl + cDISTINCT first_nameremoves duplicates from |
More of Postgres
- Create Table
- How to filter column based on multiple values
- Select columns from table
- Where
- How to use aliases
- How to use AND / OR operators
- How to group resulting set by specific column values
- How to select column which value is between two values
- How to filter resulting set after grouping is done
See more codes...