I have something like this (date simplified to integer just for the example):
Order Date Value
12 5 555
12 5 800
12 2 900
13 3 122
13 4 155
14 1 121
... ... ...
And I'd like to get the order with the highest date and then the highest value:
Order Date Value
12 5 800
13 4 155
14 1 121
... ... ...
I know this is similar to several other questions but cant figure out how to apply those answers to my case, sorry.
Thanks!