I want to update the table field "Reminder "in the table TblClients with the entries in the field "Reminder" in the table tblClients1,but the update query does not give any results.What is wrong wih my query ?
UPDATE TblClients INNER JOIN TblClients1 ON TblClients.ClientID = TblClients1.ClientID SET TblClients.Reminder = [TblClients1].[Reminder];
UPDATE TblClients INNER JOIN TblClients1 ON TblClients.ClientID = TblClients1.ClientID SET TblClients.Reminder = [TblClients1].[Reminder];