在从 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)
以上是如何才能获取MySQL结果集中某列的唯一值?的详细内容。更多信息请关注PHP中文网其他相关文章!