How can I select the 100 largest rows in a table based on a column 'score'?
I can find the largest score in the 'score' column with:
SELECT max(score) FROM mTable
And then obtain that row(s):
SELECT * FROM mTable WHERE score=largestScore
But how would I wrap this up and obtain the following 99 lower scored rows?
Thanks.