I have a table of Computers and their Last Logon Date.
The thing is I have multiple records.
I learned to create a similar table so I can append these multiple records into it and only come up with one unique record for each Computer.
I want to know how to control it to pick the most recent data:
Example:
ComputerName: ====> User====> LogDate
WOPR1239 SmithAm 7/16/08
WOPR1239 JonesAm 5/05/08
WOPR1239 TatePa 6/11/08
WOPR1445 HenryJa 6/18/08
WOPR1445 MooreJa 7/11/08
So I want to be able to append 2 records from this list:
WOPR1239 SmithAm 7/16/08
WOPR1445 MooreJa 7/11/08
These two because they have the most recent dates.
Thanks