Duplicate elimination, DISTINCT
In some situations, an SQL query for selecting data may return duplicate rows.
For example, let's retrieve the class field from the Student_in_class table in the database, where information about the school schedule is stored.
SELECT class FROM Student_in_class;
Since there may be several students in one class, it is not surprising that when outputting data, we can observe identical values. To avoid such duplication when selecting data, there is the DISTINCT operator.
Operator syntax
SELECT [DISTINCT] table_fields FROM table_name;
So in our case, the query to retrieve unique classes that have at least one student would look like this:
SELECT DISTINCT class FROM Student_in_class;
DISTINCT for multiple column
When using the DISTINCT operator for two or more columns, records that have identical values in all fields will be removed.
So for such a table:
a query with the DISTINCT operator would return all combinations of first and last names except for the duplicate "John Scott".
SELECT DISTINCT first_name, last_name FROM User;