Other User Diary

php mysql how to get unique data from table

SELECT DISTINCT Example

The "Persons" table:

P_IdLastNameFirstNameAddressCity
1HansenOlaTimoteivn 10Sandnes
2SvendsonToveBorgvn 23Sandnes
3PettersenKariStorgt 20Stavanger

Now we want to select only the distinct values from the column named "City" from the table above.

We use the following SELECT statement:

SELECT DISTINCT City FROM Persons

The result-set will look like this:

City
Sandnes
Stavanger




x-xmax
Country       UNITEDSTATES
City               Ohio
Posted On   14/02/2012

5



Other Pages