Combine multiple UPDATE queries

jimward

New member
Local time
Today, 11:21
Joined
Jan 15, 2015
Messages
3
I would like to combine 4 UPDATE queries into a single query but don't know how. The four queries are:

UPDATE tblToDeeds INNER JOIN tblProperties ON tblToDeeds.ToDeedID = tblProperties.PropID SET tblToDeeds.TransfDate = [tblProperties].[OwnDate];

UPDATE tblToDeeds LEFT JOIN tblProperties ON tblToDeeds.ToDeedID = tblProperties.PropID SET tblToDeeds.ToDeed_Text = [tblProperties].[Deed];

UPDATE tblProperties RIGHT JOIN tblToDeeds ON tblProperties.PropID = tblToDeeds.PropID SET tblToDeeds.FromDeed_Text = [tblProperties].[Deed];

UPDATE tblToDeeds SET tblToDeeds.TransfDate_text = CStr(Format([TransfDate],"yyyy/mm/dd"));

Can anyone help?
Thanks in advance
Jim...
 
Hi Jim. If you're updating multiple tables, I don't think you'll be able to use just one query. You may need a separate query for each table. I could be wrong though.
 

Users who are viewing this thread

Back
Top Bottom