Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm sorry, my SQL is a bit rusty so this might be trivial, but I can't figure it out.

I have table data similar to this:

ID  LABEL
101 A
102 A
103 A
104 B
105 C
106 C

I'd like to select only distinct labels, but also have a column with ids. Ideally result could be:

ID  LABEL
101 A
104 B
105 C

I don't really care which ID gets selected for a label. Less ideally id could any unique integer, like this:

ID  LABEL
1   A
2   B
3   C

I'm using SQLite, if that matters.

share|improve this question

1 Answer

up vote 8 down vote accepted

This query will do the trick and select you the min id for each label. You just need to put in the name of your table...

SELECT MIN(id), LABEL
FROM table 
GROUP BY LABEL
ORDER BY MIN(id)
share|improve this answer
Thanks, works great! – Juozas Kontvainis Nov 11 '11 at 8:49

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.