I have a small problem. I'm populating a select tag with results from a SQL database. What I would like to have is the last one added as the top entry and the rest sorted alphabetically.
So it would return:
*----------*-------------*
developerID|developerName
*----------*-------------*
| 40       | ZZZ Dev     |
| 39       | A Dev       |
| 38       | Be New Dev  |
*----------*-------------*
Currently it just selects all the entries in descending order:
"SELECT developerName, developerID FROM developer ORDER BY developerID DESC"
Which is fine, but not as usable as I would like.
Is what I want possible using pure MySQL?