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?
|
I need to select This query:
will return How do I do it?
| ||||
feedback
|
| |||||||||||
feedback
|
|
does this question not give you what you want? | |||
|
feedback
|
|
I don't know if this is possible in one shot. I would do this by creating a table variable.
| ||||
|
feedback
|