I have this values in my SQL table:
A Column | B Column | C Column
------------------------------
11 | Text1 | 10
11 | Text2 | 20
11 | Text3 | 30
12 | Text4 | 20
12 | Text5 | 15
12 | Text9 | 12
13 | Text60 | 01
13 | Text99 | 05
13 | Text33 | 09
13 | Text0 | 04
And I'd like to get only the line in each subgroup delimited by 'A Column' where I have the highest value in 'C Column'. Eg.: I'll get:
A Column | B Column | C Column
------------------------------
11 | Text3 | 30
12 | Text4 | 20
13 | Text33 | 09
Could someone help me? I'm still learning about sql.
Thanks!