Hi,
When I execute the following command on my table in Access:
SELECT Passwords.Email, PassWords.LastUpdated, Users.UserID, Users.FirstName
FROM Passwords LEFT JOIN Users ON Passwords.UserID=Users.UserID
WHERE LastUpdated<#7/5/2005#;
It returns
e.mozley@myaddress.co.uk 07/06/2005 124 Ed
Why is this?
Surely 07/06/2005 is not less than 07/05/2005 and so no row should be returned?
Any help much appreciated.
Thanks
Ed
When I execute the following command on my table in Access:
SELECT Passwords.Email, PassWords.LastUpdated, Users.UserID, Users.FirstName
FROM Passwords LEFT JOIN Users ON Passwords.UserID=Users.UserID
WHERE LastUpdated<#7/5/2005#;
It returns
e.mozley@myaddress.co.uk 07/06/2005 124 Ed
Why is this?
Surely 07/06/2005 is not less than 07/05/2005 and so no row should be returned?
Any help much appreciated.
Thanks
Ed