up vote 1 down vote favorite
share [g+] share [fb]

I need to select 3 columns from a table, but I need each value from any column to be unique in the resultset for this column.

This query:

SELECT DISTINCT TOP 10 a, b, c
FROM   x

will return 10 distinct sets.

How do I do it?

link|improve this question

62% accept rate
It's difficult to understand what you mean. Perhaps an example of your data and an example of the expected output might help? – spender Jun 3 '09 at 10:38
feedback

3 Answers

up vote 4 down vote accepted
WITH q AS
        (
        SELECT  a, b, с, ROW_NUMBER() OVER (ORDER BY a, b, c) AS rn
        FROM    mytable
        )
SELECT  TOP 10 a, b, c
FROM    q q1
WHERE   NOT EXISTS
        (
        SELECT  1
        FROM    q
        WHERE   q.rn < q1.rn
                AND q.a = q1.a
        )
        AND NOT EXISTS
        (
        SELECT  1
        FROM    q
        WHERE   q.rn < q1.rn
                AND q.b = q1.b
        )
        AND NOT EXISTS
        (
        SELECT  1
        FROM    q
        WHERE   q.rn < q1.rn
                AND q.c = q1.c
        )
link|improve this answer
That's some beautiful tsql +1 – ichiban Jun 3 '09 at 11:06
@ichiban: thanks :) I'm gonna make today's post in my blog out of it – Quassnoi Jun 3 '09 at 11:07
Mighty roundabout way of saying Select a,b,c From x Group By a,b,c or what did I miss? – Amit Naidu Sep 6 '11 at 9:19
@Amit: your query may return 1, 2, 3 and 1, 2, 4 which makes a and b not unique in the resultset. – Quassnoi Sep 6 '11 at 11:13
@Quassnoi: Ah, I didn't catch that requirement from the question. As spender said, its hard to understand this one without examples. I interpreted "distinct sets" differently, such that 123 and 124 are distinct. – Amit Naidu Sep 6 '11 at 12:27
show 2 more comments
feedback

does this question not give you what you want?

link|improve this answer
feedback

I don't know if this is possible in one shot. I would do this by creating a table variable.

DECLARE @Results TABLE
(
  a varchar(100),
  b varchar(100),
  c varchar(100)
)
INSERT @Results(a)
SELECT DISTINCT a FROM myTable

INSERT @Results(b)
SELECT DISTINCT b FROM myTable

INSERT @Results(c)
SELECT DISTINCT c FROM myTable

SELECT a,b,c FROM @Results
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.