Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

update query

Status
Not open for further replies.

samotek

Technical User
May 9, 2005
197
BG
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];
 
Run this
Code:
SELECT T1.ClientID, T1.Reminder, T2.Reminder

FROM TblClients As T1 INNER JOIN TblClients1 As T2 
     ON T1.ClientID = T2.ClientID
just to be sure that there are matching records.

What is the datatype of the "Reminder" fields?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top