Jump to content

LIMIT Question


Kryptix

Recommended Posts

I'm writing some highscores for a game and want to be able to highlight a user.

 

SELECT * FROM `table` ORDER BY `rank` ASC LIMIT 0, 40

 

I want to basically start the listing from a specific user, so say for example I'm searching for user "Kryptix" I want to show 20 users above that highlighted user and 19 users below it.

 

So what I'm asking is, within one query is it possible to LIMIT the query by getting the `rank` column of that user? Maybe something like this:

 

SELECT * FROM `table` ORDER BY `rank` ASC LIMIT (SELECT `rank` FROM `table` WHERE `user` = 'Kryptix') - 20, 40

Link to comment
https://forums.phpfreaks.com/topic/201881-limit-question/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.