i have a single mysql table with at minimum userId, wager. Data can be
userId = 1 wager = 10.00, userId = 2 wager = 5.00, userId = 3 wager = 1.00.
I want to run a select with a userId param that returns all userId's that are <= the wager for that user
So if userId = 2 I get back all other users with a wager of 5.00 or less.
Query does a lot more than this with one join but just need some help or best approach with the above