I have this table with the following values:
Field1 Field2 Field3
1 200.00 abc
1 250.00 bcd
2 100 xyz
2 110 zyx
2 105 klm
I wish to select those records with all the values for Field1, but with the highest value for Field2. In this example the records:
1 250.00 bcd
2 110 zyx
I am sure it must be able to do this in a single select, but I cannot find it. Have googled the internet, but it did not turn up any useful example.
Help?