SQL SELECT DISTINCT 语句
"SELECT DISTINCT"语句用于只返回不同的值。
在一个表中,一列常常包含许多重复的值;但你只想列出不同的值。
SELECT DISTINCT 语法
SELECT DISTINCT column1, column2, ...
FROM table_name;
演示数据库
下面是Northwind样本数据库中 "Customers"表中的一个选择:
CustomerID | CustomerName | ContactName | Address | City | PostalCode | Country |
---|---|---|---|---|---|---|
1 | Alfreds Futterkiste | Maria Anders | Obere Str. 57 | Berlin | 12209 | Germany |
2 | Ana Trujillo Emparedados y helados | Ana Trujillo | Avda. de la Constitución 2222 | México D.F. | 05021 | Mexico |
3 | Antonio Moreno Taquería | Antonio Moreno | Mataderos 2312 | México D.F. | 05023 | Mexico |
4 | Around the Horn | Thomas Hardy | 120 Hanover Sq. | London | WA1 1DP | UK |
5 | Berglunds snabbköp | Christina Berglund | Berguvsvägen 8 | Luleå | S-958 22 | Sweden |
不含DISTINCT的SELECT示例
下面的SQL语句从 "Customers"表中的 "Country"列中选择所有(包括重复的)数值。
SELECT Country FROM Customers LIMIT 5;
输出:
现在,让我们使用SELECT DISTINCT
语句,看看结果。
SELECT DISTINCT 示例
下面的SQL语句从"Customers"表中选择"Country"列的DISTINCT值:
SELECT DISTINCT Country FROM Customers LIMIT 5;
输出:
下面的SQL语句列出了不同的Customers的Country的数量:
SELECT COUNT(DISTINCT Country) FROM Customers LIMIT 5;
输出: