I have a table which has as 2 of it fields "Month" and "Year". What SQL statement would I use if I had the following data in order to return the maximum month for the maximum year.
MONTH YEAR
===== ====
7 2004
1 2005
If I select Max([Year]) and Max([Month]) together I get 2005 and 7.
Any help appreciated.
Robotron
MONTH YEAR
===== ====
7 2004
1 2005
If I select Max([Year]) and Max([Month]) together I get 2005 and 7.
Any help appreciated.
Robotron