使用 SELECT 语句检索表内数据。
格式
SELECT
[ALL | DISTINCT]
selectexpr [[AS] othername] [, selectexpr ...]
[FROM table_references]
[WHERE where_conditions]
[GROUP BY group_by_list]
[HAVING search_confitions]
[ORDER BY order_list]
[LIMIT {[offset,] rowcount | rowcount OFFSET offset}]
[FOR UPDATE];
示例
从雇员信息表 employee 中查找身份证(nationalno)和职位信息(title)。
SELECT nationalno, title FROM employee;
+--------------------+-----------------+
| nationalno | title |
+--------------------+-----------------+
| 420921197908051523 | 总经理 |
| 420921198008051523 | 销售经理 |
| 420921198408051523 | 采购经理 |
| 420921198208051523 | 销售代表 |
| 420921198308051523 | 销售代表 |
| 420921198408051523 | 采购代表 |
| 420921197708051523 | 人力资源部经理 |
| 420921198008071523 | 系统管理员 |
+--------------------+-----------------+
8 rows in set (0.00 sec)