R
rbeach
I ahve a query with the itemID and Cost as per example below:
ItemID Cost
1 1.15
1 1.25
1 1.19
2 3.65
2 3.97
2 3.84
I need to get the max cost for each ItemID. The result of the query should be:
ItemID Cost
1 1.25
2 3.97
Your assistance is appreciated.
ItemID Cost
1 1.15
1 1.25
1 1.19
2 3.65
2 3.97
2 3.84
I need to get the max cost for each ItemID. The result of the query should be:
ItemID Cost
1 1.25
2 3.97
Your assistance is appreciated.