从t-SQL中的两列中选择DISTINCT

时间:2012-08-18 06:41:25

标签: sql sql-server tsql select distinct

说,如果我有下表:

CREATE TABLE tbl (ID INT, Type UNIQUEIDENTIFIER)
INSERT tbl VALUES
(1, N'D9D09D5B-AF63-484C-8229-9762B52972D0'),
(2, N'D9D09D5B-AF63-484C-8229-9762B52972D6'),
(3, N'D9D09D5B-AF63-484C-8229-9762B52972D9'),
(3, N'D9D09D5B-AF63-484C-8229-9762B52972D2'),
(4, N'D9D09D5B-AF63-484C-8229-9762B52972D0')

我需要选择不同的ID列,但也需要选择与其关联的Type列值。如果我执行以下操作:

select distinct id, type from tbl

当我只需要这个时,它会返回整个表:

1, N'D9D09D5B-AF63-484C-8229-9762B52972D0'
2, N'D9D09D5B-AF63-484C-8229-9762B52972D6'
3, N'D9D09D5B-AF63-484C-8229-9762B52972D9'
4, N'D9D09D5B-AF63-484C-8229-9762B52972D0'

我知道这一定很简单,但我在这里缺少什么?

2 个答案:

答案 0 :(得分:3)

根据您的评论,您需要在列表中选择第一个类型。所以你可以通过使用这样的子查询来实现这个目的:

SELECT id, (SELECT TOP 1 type FROM tbl a WHERE id = b.id)
FROM tbl b GROUP BY id

See this SQLFiddle

答案 1 :(得分:2)

select id, min(type) from tbl group by id