This Oracle tutorial explains how to use the Oracle DISTINCT clause with syntax and examples.
The Oracle DISTINCT clause is used to remove duplicates from the result set. The DISTINCT clause can only be used with SELECT statements.
The syntax for the DISTINCT clause in Oracle/PLSQL is:
The columns or calculations that you wish to retrieve.
The tables that you wish to retrieve records from. There must be at least one table listed in the FROM clause.
Optional. The conditions that must be met for the records to be selected.
Let's look at the simplest Oracle DISTINCT clause example. We can use the Oracle DISTINCT clause to return a single field that removes the duplicates from the result set.
For example:
This Oracle DISTINCT example would return all unique state values from the customers table where the customer's last_name is 'Smith'.
Let's look at how you might use the Oracle DISTINCT clause to remove duplicates from more than one field in your SELECT statement.
For example:
This Oracle DISTINCT clause example would return each unique city and state combination from the customers table where the total_orders is greater than 10. The results are sorted in ascending order by city.
In this case, the DISTINCT applies to each field listed after the DISTINCT keyword, and therefore returns distinct combinations.