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.

Lets say I have a table tilistings with a dozen columns, and about 2,000 rows there is one column cityname that has probably 50 different values in it. What I want to do, is search through the tilistings and create another table that just contains the 50 different values from cityname without duplicating any names....basically if cityname had the values a,b,a,c,b,b,d,a,a,d,d,c I would only want the new table to contain a,b,c. Is there a pre-built MySQL function to do so? Otherwise, just point me in the right direction to do this with PHP. I can create the table, just looking to populate it.

share|improve this question

2 Answers

up vote 1 down vote accepted

You can get the unique city names by performing the following query:

SELECT DISTINCT cityname FROM tilistings

Then loop through those and INSERT them into your new table with PHP or INSERT INTO ... SELECT.

share|improve this answer
Thanks...just what I was looking for – Mike L. Jan 29 '11 at 0:12

Or do it all in SQL, if you already have created a table named cities with a single column cityname:

INSERT INTO `cities` (`cityname`)
SELECT DISTINCT `cityname` FROM `tilistings`;

Or crate the table from the SELECT:

CREATE TABLE `cities`
SELECT DISTINCT `cityname` FROM `tilistings`;
share|improve this answer

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.