SQL query: 3 column table, searching "John" 's max value returning City only.
Data:
Name | City | Value <br>
John | LDN | 50 <br>
Joey | MCR | 12<br>
Dave | BHM | 5<br>
John | NTH | 56 <br>
Desired result: NTH (4th row)
How can I achieve this? Thanks in advance.