Click to See Complete Forum and Search --> : List out of a database...


weee
01-19-2005, 02:28 AM
Hi There.

I have aling list of cities in a databse. I want to show the list BUT Some of'em repeating themselfs. How can I show the list without showing the same records over and over again?

Thanks!

russell
01-19-2005, 08:50 AM
SELECT Distinct city FROM myTable

weee
01-19-2005, 11:45 AM
Thank You!