I have UserScores Table with data like this:
Id    userId   Score
1       1       10
2       2       5
3       1       5
I would like to have a query or SQL block that can give me the following output
Id    userId   Score
3       1       5
2       2       5
That is, I would like to pick rows that are unique by 'user id' that belonging to the highest 'id' column value.