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.
|
|
Let's say I have this table: id colorName How to select one representative of each color?
Result: Thanks.
|
||
|
|
|
|
Not random representatives, but...
|
||
|
|
|
|
In
|
||||
|
|
|
|
||
|
|
|
SELECT colorName, |
||
|
|