sql中distinct函数的作用是什么

avatar
作者
筋斗云
阅读量:0

在SQL中,DISTINCT函数的作用是返回不重复的行/记录。它应用于SELECT语句中的列,用来排除重复的值,只返回唯一的值。

例如,假设有一个名为"customers"的表,包含以下数据:

customer_idcustomer_namecity
1JohnLondon
2MaryParis
3JohnBerlin
4DavidLondon

如果我们执行以下SQL查询:

SELECT DISTINCT customer_name, city FROM customers;

结果将会是:

customer_namecity
JohnLondon
MaryParis
DavidLondon
JohnBerlin

可以看到,DISTINCT函数只返回唯一的customer_name和city组合,去除了重复的行。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!