I have a table that has 2 fields Account Number and Extension. I am trying to make a query to give me the account number with the largest Extension number.
[Account Number] [Extension]
1 15
1 18
1 55
1 76
2 12
2 46
3 01
3 15
I would like to return:
[Account Number] [Extension]
1 76
2 46
3 15
Thanks!
[Account Number] [Extension]
1 15
1 18
1 55
1 76
2 12
2 46
3 01
3 15
I would like to return:
[Account Number] [Extension]
1 76
2 46
3 15
Thanks!