Hi guys,
I have data which look like this:
|ID|Number|
|1|1|
|1|3|
|2|1|
|3|1|
|3|2|
|3|3|
I need to group them by ID and pick up only rows with highest Number value. To get such data:
|ID|Number|
|1|3|
|2|1|
|3|3|
Any idea how to accomplish this?
Thanks