sql server distinct 过滤两个字段重复怎么写?

2024-12-29 14:25:32
推荐回答(2个)
回答1:

后面跟多个字段的话,就是要多个字段同时重复才能过滤

其实道理很简单,举个例子,如果数据是
id name
1 aaa
2 aaa

select distinct id,name from tab
这个语句的返回结果必然是两条,因为如果是1条的话,id 有两个值,就没法显示,随机取数这种事情如果没有指令,数据库自己是没有这个功能的。

解决方法:
比如name相同的记录,我要id最小的

select * from tab a where not exists (select 1 from tab where name = a.name and id < a.id)

搞定!

回答2:

select max(id) as id ,字段名 from 表名 group by 字段名
或者
select min(id) as id ,字段名 from 表名 group by 字段名
无法去掉重复,说明id+字段名是唯一的所以无法去除