Sqldistinct和groupby的区别distinct和Group by 区别:
distinct只是将重复的⾏从结果中出去;
group by是按指定的列分组,⼀般这时在select中会⽤到聚合函数。
distinct是把不同的记录显⽰出来。
group by是在查询时先把纪录按照类别分出来再查询。
group by 必须在查询结果中包含⼀个聚集函数,⽽distinct不⽤。
聚合函数 :
AVG
MAX
MIN
SUM
COUNT
假定 Table 表有三列,
id, key, value
其中 id是主键,不能重复,key和value可能有重复记录
使⽤distinct去重复:
select distinct key,value
from table
不能显⽰主键。
使⽤group by 去重复
select id,key,value from table A,
(select key,value, min(id) PID
from table group by key,value
) B
where A.id=b.PID
distinct查询可以显⽰主键
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论