I have a table and I want to use a select query to sort the results in ascending order except for one value "other" that I want to always display as the last entry and the rest in alphabetical order. So for example.
Apple
banana
tomoatoes
other
As you can see "O" would come before "T", but this is the exception value that I want to keep at the end of the result set.
Thanks in advance.
Apple
banana
tomoatoes
other
As you can see "O" would come before "T", but this is the exception value that I want to keep at the end of the result set.
Thanks in advance.