Hello, i have a database with: city / age for example: Chicago 24 York 33 Chicago 54 London 12 York 21 London 1
How can i oreder thing like this? Chicago 24 Chicago 54 York 33 York 21 London 1 London 12
Basically order them by the name of the town. I use this for a php display records script.
mysql_query("SELECT * FROM towns WHERE .........");