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