Here's an example of my table:
Skill | SkillLevel
1 | 1
1 | 2
1 | 3
2 | 1
2 | 2
3 | 1
3 | 2
3 | 3
3 | 4
So, I want to write a query which returns me Skill 1 SkillLevel 3, Skill 2 SkillLevel 2 and Skill 3 SkillLevel 4 - Moreover, a select query to select one row of each Skill, but the one with the highest SkillLevel. All in one query, I'm clueless.
Thanks in advance
Edit: The table contains about 200 different Skills.