vote up 2 vote down star

Let's say I have this table:

id colorName
1 red
2 blue
3 red
4 blue

How to select one representative of each color? Result:
1 red
2 blue

Thanks.

flag

75% accept rate

4 Answers

vote up 12 vote down check

Not random representatives, but...

select color, min(id)
from   mytable
group by color;
link|flag
vote up 0 vote down

In MS SQL Server and Oracle:

SELECT id, colorName
FROM (
  SELECT id, colorName,
         ROW_NUMBER() OVER (PARTITION BY colorName ORDER BY id) AS rn
  FROM colors
)
WHERE rn = 1
link|flag
Thats a lot of code to do a MIN(id)... ;) – Arjan Einbu Feb 20 at 23:39
If there is a third field, MIN won't work :) – Quassnoi Feb 20 at 23:50
vote up 3 vote down
select distinct colorname from mytable
link|flag
he needs the id too. – Seun Osewa Feb 20 at 23:35
vote up 1 vote down

SELECT colorName,
MIN(id) AS id
FROM table
GROUP BY colorname

link|flag

Your Answer

Get an OpenID
or

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