My MySQL table country_phone_codes looks something like this
id country_code area_code name
------------------------------------------------------------
1 | 93 | 93 | AFGHANISTAN
2 | 93 | 9370 | AFGHANISTAN - MOBILE
3 | 93 | 9375 | AFGHANISTAN - MOBILE
4 | 355 | 355 | ALBANIA
5 | 355 | 35568 | ALBANIA - MOBILE - AMC
6 | 213 | 213 | ALGERIA
7 | 213 | 2131 | ALGERIA - CAT
------------------------------------------------------------
These are just few records of more than 28000 records. I am trying to formulate a query that will provide me with the result like this-
country_code name
-----------------------------
93 | AFGHANISTAN
355 | ALBANIA
213 | ALGERIA
-----------------------------
By using SELECT DISTINCT(country_code) FROM country_phone_codes ORDER BY country_code LIMIT 0,260, I am able to get distinct country codes. But how do I get corresponding country name?

AFGHANISTANorAFGHANISTAN - MOBILEfor code #93. – Salman A Mar 7 '12 at 6:39AFGHANISTAN - MOBILEwhen you were expectingAFGHANISTAN. Reference. – Salman A Mar 7 '12 at 6:57