Yogesh Chauhan's Blog

The SELECT DISTINCT Statement in SQL

in SQL/MySQL on August 24, 2019

When we work with database, we are going to have many different values and with the duplicate entires as well and many times we want to know the total number of unique values only. For example, let's say there is a table of international students in a table who are a part of some university. Now there will be more than one student form same country. What if you want to get the records which gives you the number of unique countries only? That's when this DISTINCT statement helps us.

The SELECT DISTINCT Statement in SQL returns distinct or different values from the database table.

Let's take look at the query results without SELECT DISTINCT Statement. I'm going to apply following query to my database. For simplicity purposes I am adding LIMIT to the query results and will only ask for 10 results.


  SELECT CountryCode FROM city LIMIT 10;

You can see the results in the DEMO link provided at the end of the article.

As you can see we see all the duplicate values in Country Code results like AFG, AGO and so on. So it doesn't tell us about the total unique CountryCode in our database. Now let's apply the same query with SELECT DISTINCT Statement.

Let's apply the following query to the database. 


SELECT DISTINCT CountryCode FROM city LIMIT 10;

As you can see the results in the DEMO (Link Below), now we have all the unique results set.

Note: The example above will not work in Firefox and Microsoft Edge! Because COUNT(DISTINCT column_name) is not supported in Microsoft Access databases.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How to create rotating texts using JavaScript and CSS?CSSHow to modify AutoSave Interval using code in WordPress?WordPressThe actual difference between indexOf() and search() in JavaScriptJavaScriptHow to change CSS with JavaScript?CSS3 ways to pass a variable in url() function in SCSS (Sass)SCSSHow to Sort (Shuffle) an Array in Random Order in JavaScript?JavaScript