在从 Mysql 表中查询数据时,我们可能会从列中获取重复值。借助 SELECT 语句中的 DISTINCT 子句,我们可以去除结果集中的重复数据。语法SELECT DISTINCT Columns FROM Table_name
在从 Mysql 表中查询数据时,我们可能会从列中获取重复值。借助 SELECT 语句中的 DISTINCT 子句,我们可以去除结果集中的重复数据。
SELECT DISTINCT Columns FROM Table_name WHERE conditions;
例如,我们有一个名为“tender”的表,其中包含以下列 -
mysql> Select * from tender;
+----------+--------------+--------------+-------+
| clientid | client_Fname | Client_Lname | value |
+----------+--------------+--------------+-------+
| 100 | Mohan | Kumar | 60000 |
| 101 | Sohan | Singh | 50000 |
| 101 | Somil | Rattan | 55000 |
| 103 | Gaurav | Kumar | 75000 |
| 103 | Rahul | Singh | 63000 |
+----------+--------------+--------------+-------+
5 rows in set (0.00 sec)
现在,如果我们只想获取名为“Client_Lname”的列的唯一值,那么以下将是查询 -
mysql> Select DISTINCT client_Lname from tender;
+--------------+
| client_Lname |
+--------------+
| Kumar |
| Singh |
| Rattan |
+--------------+
3 rows in set (0.05 sec)
下面的查询将对名为“client_Fname”的列执行相同的操作。
mysql> Select DISTINCT client_Fname from tender;
+--------------+
| client_Fname |
+--------------+
| Mohan |
| Sohan |
| Somil |
| Gaurav |
| Rahul |
+--------------+
5 rows in set (0.00 sec)
--结束END--
本文标题: 如何才能获取MySQL结果集中某列的唯一值?
本文链接: https://lsjlt.com/news/438262.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0