如何才能获取MySQL结果集中某列的唯一值?

如何才能获取MySQL结果集中某列的唯一值?

在从 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)
原文来自:www.php.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容