I have a table with two columns:
[id,score]
and I want to retrieve the following result
[position, id ,score]
for example for
id score
1 7
2 3
3 19
I want to retrieve
pos id score
1 3 19
2 1 7
3 2 3
How can I do it? Thanks in advance
Your query could look something like this:
Edit
The
limitis totally optional by the way