Home > Database > Mysql Tutorial > body text

How to use mysql distinct

青灯夜游
Release: 2022-11-08 19:02:32
Original
16120 people have browsed it

In mysql, the distinct keyword is used to filter duplicate data. It can filter duplicate data in one or more fields in the data table and only return one piece of data to the user; the distinct keyword needs to be Used together with the SELECT statement, the syntax is "SELECT DISTINCT column1, column2, ... FROM table_name;".

How to use mysql distinct

The operating environment of this tutorial: windows7 system, mysql8 version, Dell G3 computer.

When using the SELECT statement to perform a simple data query in MySQL, all matching records are returned. If some fields in a table do not have unique constraints, duplicate values ​​may exist in these fields. In order to query unique data, MySQL provides the DISTINCT keyword.

The main function of the DISTINCT keyword is to filter duplicate data in one or more fields in the data table, and only return one piece of data to the user.

The syntax format of the DISTINCT keyword is:

SELECT DISTINCT column1, column2, ...
FROM table_name;
Copy after login

where "column" is the name of one or more fields that need to eliminate duplicate records , separate multiple fields with commas.

You need to pay attention to the following points when using the DISTINCT keyword:

  • The DISTINCT keyword can only be used in a SELECT statement.

  • When deduplicating one or more fields, the DISTINCT keyword must be at the front of all fields.

  • If there are multiple fields after the DISTINCT keyword, the multiple fields will be combined and deduplicated. That is to say, only when the combination of multiple fields is exactly the same. will be deduplicated.

Demo Database

The following is a selection of the "Customers" table in the Northwind sample database:

CustomerIDCustomerNameContactNameAddressCityPostalCodeCountry
1Alfreds FutterkisteMaria AndersObere Str. 57Berlin12209Germany
2Ana Trujillo Emparedados y heladosAna TrujilloAvda. de la Constituciуn 2222Mйxico D.F.05021Mexico
3Antonio Moreno TaquerнaAntonio MorenoMataderos 2312Mйxico D.F.05023Mexico
4Around the HornThomas Hardy120 Hanover Sq.LondonWA1 1DP UK
5Berglunds snabbkцpChristina BerglundBerguvsvдgen 8LuleеS-958 22Sweden

No SELECT instance using DISTINCT

The following SQL statement selects ALL (including duplicates) values ​​from the "Country" column in the "Customers" table:

SELECT Country FROM Customers;
Copy after login

How to use mysql distinct

##SELECT DISTINCT instance

1. Select DISTINCT values ​​only from the "Country" column in the "Customers" table:

SELECT DISTINCT Country FROM Customers;
Copy after login

How to use mysql distinct

2. List different "Countries" Quantity:

SELECT COUNT(DISTINCT Country) FROM Customers;
Copy after login

How to use mysql distinct

NOTE: The above example does not work in Firefox and Microsoft Edge! Because Microsoft Access database does not support COUNT (DISTINCT column_name). Firefox and Microsoft Edge use Microsoft Access in our example.

[Related recommendations:

mysql video tutorial]

The above is the detailed content of How to use mysql distinct. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!