I need to show data max from specified colum, is this even possible? I am still newbie on this SQL.
I have data like this
Id Order_id Sequence
------------------------
1 A01 1
2 A01 2
3 A02 1
4 A02 2
5 A02 3
6 A03 1
Id is the primary key.
Expected result
Id Order_id Sequence
------------------------
2 A01 2
5 A02 3
6 A03 1
Group Byclause.