J
Jonathan Brown
When my users log into my database a query automatically runs and creates a
new record in a table called tblUsageStats. Each record contains the user's
Username and the Current date & time (Now()).
I want to create a query now that will pull from that table only the last
time each user logged in. So it would probably looks something like:
FROM "tblUsageStats"
Select "Username" & "Date"
Where "Date" = "The last time they logged in" or "The closest date to NOW()"
This is not to say, "Who was the last person to login?" but "when was the
last time each user logged in?"
Thanks a ton.
new record in a table called tblUsageStats. Each record contains the user's
Username and the Current date & time (Now()).
I want to create a query now that will pull from that table only the last
time each user logged in. So it would probably looks something like:
FROM "tblUsageStats"
Select "Username" & "Date"
Where "Date" = "The last time they logged in" or "The closest date to NOW()"
This is not to say, "Who was the last person to login?" but "when was the
last time each user logged in?"
Thanks a ton.