Is there any way I can get the actual row number from a query?
I want to be able to order a table called league_girl by a field called score; and return the username
You can also use
SELECT @curRow := ifnull(@curRow,0) + 1 Row, ...
to initialise the counter variable.