In Oracle, you can use the Distinct keyword to remove duplicate data and filter duplicate rows in the result set. This keyword can ensure that the value of the specified column or columns returned in the SELECT clause is unique. ;The syntax is "SELECT DISTINCT field name FROM data table name;".
The operating environment of this tutorial: Windows 7 system, Oracle 11g version, Dell G3 computer.
In Oracle, you can use the Distinct keyword to remove duplicate data.
Use theDISTINCT
clause in theSELECT
statement to filter duplicate rows in the result set. It ensures that the values returned in the specified column or columns in theSELECT
clause are unique.
The following explains the syntax of theSELECT DISTINCT
statement:
SELECT DISTINCT column_name FROM table_name;
In the above syntax,table_name
thecolumn_name# of the table ## Values in columns will be compared to filter out duplicates.
SELECTclause, as follows:
SELECT DISTINCT column_1, column_2, ... FROM table_name;In this syntax, ## The combination of values in #column_1
,column_2
, andcolumn_n
is used to determine the uniqueness of the data. The
clause can only be used in theSELECT
statement.Please note that
is not a synonym for the SQL standardUNIQUE
. It is a good habit to always useDISTINCT
instead ofUNIQUE
.Oracle DISTINCT Example
to see how it works.1. Example of Oracle DISTINCT applied on one column
) table in the sample database:
The following example retrieves the names of all contacts:
SELECT first_name FROM contacts ORDER BY first_name;
Execute the above query statement and get the following results-
The query returned
319row means that the contact (contacts
) table has319
rows.To obtain unique contact names, you can add the
keyword to theSELECT
statement above, as follows:
Execute the above query statement and get the following results -SELECT DISTINCT first_name FROM contacts ORDER BY first_name;
The query returned
302rows, indicating the contact (contacts
) table There are17
rows that are duplicates and they have been filtered.2. Oracle DISTINCT application multi-column example
table below. The structure of the table is as follows:
The following statement selects different product IDs and quantities from the
order_itemstable:
Execute the above query statement and get the following results-SELECT DISTINCT product_id, quantity FROM ORDER_ITEMS ORDER BY product_id;
In this example, the values of the
product_idandquantity
columns are both used to evaluate the uniqueness of the rows in the result set.3. Oracle DISTINCT and NULL
treatsNULL
values as duplicate values. If you use theSELECT DISTINCT
statement to query data from a column with multipleNULL
values, the result set contains only oneNULL
value.Please refer to the
table in the sample database, the structure is as follows -
The following statements are from
stateRetrieve data with multipleNULL
values in the column:
Execute the above example code and get the following results-SELECT DISTINCT state FROM locations ORDER BY state NULLS FIRST;
As As you can see in the picture above, only a
NULLvalue is returned.Recommended tutorial: "
The above is the detailed content of How to remove duplicate data in oracle. For more information, please follow other related articles on the PHP Chinese website!