Dear readers of our blog, we'd like to recommend you to visit the main page of our website, where you can learn about our product SQLS*Plus and its advantages.
 
SQLS*Plus - best SQL Server command line reporting and automation tool! SQLS*Plus is several orders of magnitude better than SQL Server sqlcmd and osql command line tools.
 

REQUEST COMPLIMENTARY SQLS*PLUS LICENCE

Enteros UpBeat offers a patented database performance management SaaS platform. It proactively identifies root causes of complex revenue-impacting database performance issues across a growing number of RDBMS, NoSQL, and deep/machine learning database platforms. We support Oracle, SQL Server, IBM DB2, MongoDB, Casandra, MySQL, Amazon Aurora, and other database systems.

DISTINCT SQL operator

30 June 2020

DISTINCT SQL operator

The DISTINCT SQL operator is used to remove duplicates from the resulting SELECT operator set.

Syntax for DISTINCT statement in SQL

SELECT DISTINCT exprs
FROM tabs
[WHERE conds];

where:

  • exprs – Columns or calculations that you want to get.
  • tabs – The tables from which you want the records. The FROM sentence must contain at least one table.
  • WHERE conditions – It’s optional. Conditions to be met for the records to be selected.

If only one expression is specified in the DISTINCT operator, the query will return unique values for that expression.

If multiple expressions are specified in the DISTINCT operator, the query retrieves the unique combinations for the listed expressions.

In SQL, the DISTINCT operator does not ignore NULL values. So when using DISTINCT in your SQL statement, your resulting set will contain the value of NULL as a separate value.

DISTINCT – search for unique values in a column

Let’s see how to use the DISTINCT operator to find unique values in a single table column.

In this example, we have a table with the following data:

suppl_idsuppl_namecity_idstate_id
100YandexMoscowRussia
200GoogleLansingMichigan
300OracleRedwood CityCalifornia
400BingRedmondWashington
500YahooSunnyvaleWashington
600DuckDuckGoPaoliPennsylvania
700QwantParisIle de France
800FacebookMenlo ParkCalifornia
900Electronic ArtsSan FranciscoCalifornia

Let’s find all the unique values in the table. Enter the following SQL statement:

SELECT DISTINCT state_id
  FROM suppls
ORDER BY state_id;
Six records will be selected. Here are the results that you should get:
state_id
Russia
Ile de France
Pennsylvania
California
Washington
Michigan

In this example, all unique state values are returned from the vendor table and all duplicates are removed from the result set. As you can see, the state of California in the results set is displayed only once, not four times.

SQL DISTINCT – search for unique values in multiple columns

Next let’s look at how to use SQL DISTINCT to remove duplicates from more than one field in a SELECT statement.

Using the same table from the previous example, enter the following SQL statement:

SELECT DISTINCT city_id, state_id
FROM suppls
ORDER BY city_id, state_id;
Eight records will be selected. Here are the results you’ll get:
city_idstate_id
MoscowRussian
LansingMichigan
Redwood CityCalifornia
RedmondWashington
SunnyvaleWashington
PaoliPennsylvania
ParisFrance
Menlo ParkCalifornia

In this example, each unique combination of city and state will be returned. In this case, DISTINCT applies to each field specified after the DISTINCT keyword. As you can see, ‘Redwood City’, ‘California’ in the result set only appears once, not twice.

How DISTINCT handles NULL values

Finally, does the DISTINCT NULL operator consider it a unique value in SQL? The answer is yes. Let’s look at it further.

In this example, we have a product table with the following data:

prod_idprod_namecat_id
1Pear50
2Banana50
3Orange50
4Apple50
5Bread75
6Sliced Ham25
7KleenexNULL

Now let us select unique values from the cat_id field, which contains the value NULL. Enter the following SQL query:

SELECT DISTINCT cat_id
FROM prods
ORDER BY cat_id;
Four records will be selected. Here are the results that you should get:
cat_id
NULL
25
50
75

In this example, the query will return the unique values found in the cat_id column. As you can see from the first line of the result set, NULL is the unique value returned by the DISTINCT operator.

Using DISTINCT in SQL

 
Tags: , , , , , ,

MORE NEWS

 

Preamble​​NoSql is not a replacement for SQL databases but is a valid alternative for many situations where standard SQL is not the best approach for...

Preamble​​MongoDB Conditional operators specify a condition to which the value of the document field shall correspond.Comparison Query Operators $eq...

5 Database management trends impacting database administrationIn the realm of database management systems, moreover half (52%) of your competitors feel...

The data type is defined as the type of data that any column or variable can store in MS SQL Server. What is the data type? When you create any table or...

Preamble​​MS SQL Server is a client-server architecture. MS SQL Server process starts with the client application sending a query.SQL Server accepts,...

First the basics: what is the master/slave?One database server (“master”) responds and can do anything. A lot of other database servers store copies of all...

Preamble​​Atom Hopper (based on Apache Abdera) for those who may not know is an open-source project sponsored by Rackspace. Today we will figure out how to...

Preamble​​MongoDB recently introduced its new aggregation structure. This structure provides a simpler solution for calculating aggregated values rather...

FlexibilityOne of the most advertised features of MongoDB is its flexibility.  Flexibility, however, is a double-edged sword. More flexibility means more...

Preamble​​SQLShell is a cross-platform command-line tool for SQL, similar to psql for PostgreSQL or MySQL command-line tool for MySQL.Why use it?If you...

Preamble​​Writing an application on top of the framework on top of the driver on top of the database is a bit like a game on the phone: you say “insert...

Preamble​​Oracle Coherence is a distributed cache that is functionally comparable with Memcached. In addition to the basic function of the API cache, it...

Preamble​​IBM pureXML, a proprietary XML database built on a relational mechanism (designed for puns) that offers both relational ( SQL / XML ) and...

  What is PostgreSQL array? In PostgreSQL we can define a column as an array of valid data types. The data type can be built-in, custom or enumerated....

Preamble​​If you are a Linux sysadmin or developer, there comes a time when you need to manage an Oracle database that can work in your environment.In this...

Preamble​​Starting with Microsoft SQL Server 2008, by default, the group of local administrators is no longer added to SQL Server administrators during the...