I have multiple columns I wish to order by.
I have columns:
# # # # (1, 2, 3, 4)
A 0 0 0 0
B 1 0 1 3
C 1 0 2 3
I want to ORDER BY 4, 3, 2, 1.
Syntax I am using:
"SELECT * FROM table ORDER BY 4, 3, 2, 1"
Note: I am not sure wether to use ASC or DESC - or even if I have to use it.
Thanks, Regards X