Hi,
I have a table say tblSwap with a column StroreVals.
StroreVals
20
21
29
11
10
5
7
I want to get the result in descending order using SQL SERVER 2005.
How to do?
If you fire SELECT StroreVals FROM tblSwap ORDER BY StroreVals DESC
The output is 7
5
29
21
20
11
10
Also, if it is like "Abc", "Def","Azy","kly"? Please help