I have a database table that holds the number of points a user has earned in a game, that looks like this:
id points
1 1000
2 300
3 600
4 900
etc
I want to be able to get just the rows with the 50th to 59th most points. It’s ok if more than one query is needed. I’m using PHP and MySQL. Thanks!
1 Answer