Hi there!
I hop there's a simple solution for this:
I have a table where each row has it's own status (SET
type field). Statuses can be:
- offline
- available
- busy
- distance
I'd like to order as follows
- available
- busy
- distance
- offline
I thought a simple
ORDER BY `status` ASC
will do the trick (alphabetical order) but it gives me the following:
- offline
- available
- busy
- distance
How can is sort out this in the most simple way?
Thanks in advance,
fabrik