I have a database that contain over 10,000 records from football (Australian Rules) scores. An example of the data is as follows:
Rd Dn Team G B P Team2 Year
1 1 Berwick 15 10 100 Noble Park 1998
1 1 Hallam 12 19 81 Geelong 2010
2 1 Cobram 14 12 96 St.Kilda 2001
2 1 St.Kilda 15 18 108 Essendon 1974
How can I create a query that will show the Highest Points ('P') for each particular 'Rd' and will show the whole row for each of the Max scores. I have tried the SELECT query which works for just one particular Rd and just shows the actual 'P' value. So from the above data I would like the following result from my query.
1 1 Berwick 15 10 100 Noble Park 1998
2 1 St.Kilda 15 18 108 Essendon 1974 being the Maximum scores for those Rd's. Thank you in advance for any help you can offer me.
Rd Dn Team G B P Team2 Year
1 1 Berwick 15 10 100 Noble Park 1998
1 1 Hallam 12 19 81 Geelong 2010
2 1 Cobram 14 12 96 St.Kilda 2001
2 1 St.Kilda 15 18 108 Essendon 1974
How can I create a query that will show the Highest Points ('P') for each particular 'Rd' and will show the whole row for each of the Max scores. I have tried the SELECT query which works for just one particular Rd and just shows the actual 'P' value. So from the above data I would like the following result from my query.
1 1 Berwick 15 10 100 Noble Park 1998
2 1 St.Kilda 15 18 108 Essendon 1974 being the Maximum scores for those Rd's. Thank you in advance for any help you can offer me.