I created a view and could successfully execute the query:
Here is the output.
customer_ID Item_number Frequency
1 53 10
1 64 10
2 82 11
2 64 11
2 11 9
I need to return only the highest frequency rows ie.
customer_ID Item_number Frequency
1 53 10
1 64 10
2 82 11
2 64 11
Help in this regard is highly appreciated.