I'm trying to perform a select that orders the results alphabetically yet always puts a specific one last.
Ie.
Fred, Jane, Sharon, Tracy, Bill
I always want Bill to be last even though the rest are in alphabetical order.
Any help would be greatly appreciated.
Something along the lines of:
Ie.
Fred, Jane, Sharon, Tracy, Bill
I always want Bill to be last even though the rest are in alphabetical order.
Any help would be greatly appreciated.
Something along the lines of:
Code:
select Name from People order by Name, 'Bill';