Is there a MYSQL or PHP method to display an item first before all others then display the rest of my items alphabetically?
SELECT client_name FROM clients ORDER BY client_name ASC
Gives me the following list:
- Bob
- Harold
- Sandy
- Timmy
Except I am looking for a way to display them in order like this.
- Harold
- Bob
- Sandy
- Timmy
or like this depending on which one I need first ...
- Sandy
- Bob
- Harold
- Timmy