I have the following table:
Column 1 | Column 2 | Column 3
1 | A | 70
2 | A | 32
3 | A | 4
4 | B | 44
5 | B | 98
6 | B | 10
Column 1 contains the ID number of the row, Column 2 a string (which repeats across other rows), and Column 3 a number. I want to keep one entry per Column 2 string, but also the one with the highest number in Column 3. So the resulting table I am interested to get is:
Column 1 | Column 2 | Column 3
1 | A | 70
5 | B | 98
Any ideas?
Thanks.