I am trying to select all unique values in a column, while tossing out any duplicates so every value shows up only once. I know there was an easy way to do this; now if only I could remember what it was.
SELECT Column1
FROM Table1
ORDER BY Column1
Can anyone refresh my memory and tell me what I need to add to this to toss out the duplicates?
"Much that I bound, I could not free. Much that I freed returned to me."
(Lee Wilson Dodd)
SELECT Column1
FROM Table1
ORDER BY Column1
Can anyone refresh my memory and tell me what I need to add to this to toss out the duplicates?
"Much that I bound, I could not free. Much that I freed returned to me."
(Lee Wilson Dodd)