H
Hallgeir
I have a table like this:
AutonrId Country Date
1 Norway 2006-05-15
2 Finland 2006-05-20
3 Norway 2006-05-22
4 Sweden 2006-05-01
5 Sweden 2006-05-15
6 Finland 2006-05-15
etc
I want to build a query that returns only the latest record on each country.
Like this:
2 Finland 2006-05-20
3 Norway 2006-05-22
5 Sweden 2006-05-15
Is this possible and if it is, how can it be done?
I appreciate any suggestions that could help me.
AutonrId Country Date
1 Norway 2006-05-15
2 Finland 2006-05-20
3 Norway 2006-05-22
4 Sweden 2006-05-01
5 Sweden 2006-05-15
6 Finland 2006-05-15
etc
I want to build a query that returns only the latest record on each country.
Like this:
2 Finland 2006-05-20
3 Norway 2006-05-22
5 Sweden 2006-05-15
Is this possible and if it is, how can it be done?
I appreciate any suggestions that could help me.