Hi, I have created a View (MAX_LIST) that shows an output like below.
FB_SN | MAX_CALLS
1 3
2 7
3 6
I am trying to write an SQL query that will output the the max from max calls and its corresponding FB_SN. Using the MAX in the select just presents me with the MAX Max_Calls value.
IDEAL OUTPUT:
FB_SN | MAX_CALLS
2 7
If anyone can help with this, i would be most grateful!
Regards
Andy Fenner
FB_SN | MAX_CALLS
1 3
2 7
3 6
I am trying to write an SQL query that will output the the max from max calls and its corresponding FB_SN. Using the MAX in the select just presents me with the MAX Max_Calls value.
IDEAL OUTPUT:
FB_SN | MAX_CALLS
2 7
If anyone can help with this, i would be most grateful!
Regards
Andy Fenner