cancer2006
Programmer
I am working in access97 need help in writing a query
Table1 has two columns with ID and NAME.
Table2 has has two columns, ID and CHECKDATE.
In Table2, there are multiple checkdates associated per ID
I like to run a query which will give me the highest checkdate on each employee in Table2
Select table2.checkdate, table1.name
inner join on table1
where table2.id = table1.id;
This qurey will result in all the checkdates in table2.
Any ideas. Thank you
Table1 has two columns with ID and NAME.
Table2 has has two columns, ID and CHECKDATE.
In Table2, there are multiple checkdates associated per ID
I like to run a query which will give me the highest checkdate on each employee in Table2
Select table2.checkdate, table1.name
inner join on table1
where table2.id = table1.id;
This qurey will result in all the checkdates in table2.
Any ideas. Thank you