S
Simon Glencross
I have the following update query
UPDATE tblcustomers INNER JOIN tblservice ON tblcustomers.ID =
tblservice.CustomerID SET tblservice.ServiceReminderSent = False
WHERE (((tblservice.ActDateCompleted) Is Null));
What I want to also be able to do is select only records with the current
date in the sentdate field.
Any suggestions please?
UPDATE tblcustomers INNER JOIN tblservice ON tblcustomers.ID =
tblservice.CustomerID SET tblservice.ServiceReminderSent = False
WHERE (((tblservice.ActDateCompleted) Is Null));
What I want to also be able to do is select only records with the current
date in the sentdate field.
Any suggestions please?