HomeSQL ServerSELECT DISTINCT Clause in SQL Server

SELECT DISTINCT Clause in SQL Server

In this SQL Server tutorial, you’ll learn how to use SELECT DISTINCT clause in SQL Server to return distinct values. We will also learn its syntax along with some examples.

The DISTINCT clause in SQL Server is mainly used to remove duplicate values and return distinct values from the result set. You can use the DISTINCT clause only with the SELECT statements in SQL Server.

Syntax

SELECT DISTINCT expressions
FROM tables
[WHERE conditions];

Parameters

  • expressions
    • These are the columns or calculations that you wish to return
  • tables
    • These are one or more tables that you wish to get the records from. You will need to have atleast one table specified in the FROM clause of the SELECT query.
  • WHERE
    • This is an optional parameter used mainly to filter out the records.

1. Using DISTINCT clause with one column

The below statement returns all the FirstNames of the Person table.

SELECT FirstName
FROM [Person].[Person]

You will notice that there are some first names that are duplicate. You can get the unique or distinct first names by adding the DISTINCT keyword to the SELECT clause as shown below.

SELECT DISTINCT FirstName
FROM [Person].[Person] 

Now, the above query when run will remove all the duplicate first names from the result set and return you the unique or distinct set of first names.

2.Using DISTINCT clause with multiple columns.

The below query demonstrates the usage of DISTINCT clause used with multiple columns.

SELECT DISTINCT FirstName, LastName
FROM [Person].[Person] 

The above query used the combination of both firstname and last name to evaluate duplicate values and return the unique or distinct values.

Note: When using the SELECT DISTINCT clause, you will notice that the DISTINCT clause will not ignore the NULL values. Your result set will include the NULL values as distinct values when it finds one.

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

When dealing with a relational database management system (RDBMS) like SQL Server, compatibility level is an important concept to understand....
In this blog post, let’s learn about the error message “49975 – Unable to load controller client certificate due to...
In this blog post, let’s learn about the error message “49973 – Cannot remove tempdb remote file to local tempdb...