So let's say that I have a table such as the following:
ID Client Type
1 Johnson 3
2 Smith 1
3 Doe 2
Is there a way to write a Select query to sort non-sequentially a such way that all records with type "2" are prioritized, then type "1" and then finally type "3"? Meaning that in the example above, the Select query would return
ID Client Type
3 Doe 2
2 Smith 1
1 Johnson 3
Thanks!