标签:返回 bsp end color 举例 区别 rod product distinct
distinct 的意思就是“不同的,有区别的”
SELECT DISTINCT products.vend_id FROM products;
DISTINCT 必须放在列名的前面。
如果有多个列,DISTINCT会对多个列都产生作用。
举例:
如果给出sql如下
select distinct vend_id,prod_price from products;
此时如果有两条数据vend_id prod_price两列数据完全一致时,会只返回一条数据。
只要有一列数据不一样两条数据就会被都返回。
标签:返回 bsp end color 举例 区别 rod product distinct
原文地址:https://www.cnblogs.com/xiaonengxiong/p/11061788.html