Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this table with data:

   ID   |   Data   
--------+---------
    1   |   ONE
    2   |   ONE
    3   |   ONE
    5   |   TWO
    7   |   TWO
    10  |   TWO
    15  |   THREE
    14  |   THREE
    8   |   THREE

and I want to get this result

   ID   |   Data   
--------+---------
    1   |   ONE
    5   |   TWO
    15  |   THREE

so I want to collect only first record of each value in Data. Values ONE, TWO, THREE may exist in second table so I can get them merged using join. How can I do this?

share|improve this question

1 Answer

Try this -

Select Min(ID), Data
From YourTableAfterAllJoinsYouWant
Group By Data

You won't need to join if your Data table already has column Data in it. Or else, you can replace the YourTableAfterAllJoinsYouWant with joined tables.

share|improve this answer
Oops, I forgot to mention that the order may vary so min() will not always give correct results – Blablablaster Aug 10 '11 at 16:09
2  
@BlaBla you need you specify how to get the "correct" row then. You gave only 2 fields and the "correct" answer in your sample was always the MIN() – JNK Aug 10 '11 at 16:14
In that case you can always do the order by on the primary key of the table. In case you have none, then you can use ROW_NUMBER to generate a unique numbers for each row. If you do not have any ordering scheme, then per_my_understanding SQL can give results in any order without being incorrect. – YetAnotherUser Aug 10 '11 at 16:15
@JNK, I want to get top(1) records in chronological order, but I don't have date column in database. I think that min(ID) is great but what if IDs are generated randomly(for some purpose) and I want to get the first of each kind? – Blablablaster Aug 10 '11 at 17:26
1  
Then you need to add a date column. There is no guaranteed innate sort order in SQL. – JNK Aug 10 '11 at 17:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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