MySQL SELECT 语句
MySQL SELECT 语句
MySQL 的 SELECT
语句用于从数据库中选择数据。
返回的数据存储在一个结果表中,称为结果集。
SELECT 语法
SELECT column1, column2, ...
FROM table_name;
这里,column1, column2, ... 是您想要从中选择数据的表的字段名。如果您想要选择表中所有可用的字段,请使用以下语法
SELECT * FROM table_name;
演示数据库
在本教程中,我们将使用众所周知的 Northwind 样本数据库。
下面是 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 | 英国 |
5 | Berglunds snabbköp | Christina Berglund | Berguvsvägen 8 | Luleå | S-958 22 | 瑞典 |
SELECT 列示例
以下 SQL 语句从 "Customers" 表中选择 "CustomerName"、"City" 和 "Country" 列
SELECT * 示例
以下 SQL 语句从 "Customers" 表中选择所有列
MySQL SELECT DISTINCT 语句
SELECT DISTINCT
语句用于仅返回不同的值。
在表中,一列通常包含许多重复值;有时您只希望列出不同的值。
SELECT DISTINCT 语法
SELECT DISTINCT column1, column2, ...
FROM table_name;
不使用 DISTINCT 的 SELECT 示例
以下 SQL 语句从 "Customers" 表中的 "Country" 列中选择所有值(包括重复值)
现在,让我们使用 SELECT DISTINCT
语句并查看结果。
SELECT DISTINCT 示例
以下 SQL 语句仅从 "Customers" 表中的 "Country" 列中选择 DISTINCT 值
以下 SQL 语句计算并返回 "Customers" 表中不同 (DISTINCT) 国家/地区的数量