I got a table with three colums : lastUpdate, userId, and userScore
I want to filter that to get only the most recent userScore for 3 userId, and order them by userScore.
So far I tried :
SELECT *
FROM `mybase`
WHERE `userId`="120683"
OR `userId`="206116"
OR `userId`="259903"
GROUP BY userId
ORDER BY userScore DESC
But it's not giving me the most recent entries.
Can you help me?
Thanks