Suppose I got a table Tbl1 (C1, C2, C3)
C1-C2-C3
A - 2 - 6
N - 6 - 7
C - 9 - 4
K - 3 - 5
& another table OrderOfTbl1 (C1, customOrder int)
C1 - customOrder
K - 1
N - 2
C - 3
A - 4
Now, I can do all sort of query on Tbl1 & the result can be any order
N - 6
A - 2
K - 3
So, how to make this result sorted as the Order stated in OrderOfTbl1 table?
I don't wanna to do the Join between these 2 tables, I prefer the "Order by Case .... Then ...." solution since it is more natural.