In a MySQL database table, among other records, there is a number of pairs differing by the value of just one column, like:
| FirstName|LastName |Number|
| -------- | ------- |------|
| John | Smith |15 |
| John | Smith |32 |
....
| Sarah | Baker |8 |
| Sarah | Baker |14 |
....
I need a query to select only the records having greater values of the Number field, i.e.
| John | Smith |32 |
| Sarah | Baker |14 |
Non-duplicate records, i.e. when there is only one record per person, should not be selected