MySQL Forums
Forum List  »  General

Re: How to Update a field with data From another table
Posted by: Peter Brawley
Date: April 20, 2016 11:32AM

To update a.x from b.y joining a to b on a.m=b.n ...

update a
join b on a.m=b.n
set a.x=b.y
[where ...] ;

Options: ReplyQuote


Subject
Written By
Posted
Re: How to Update a field with data From another table
April 20, 2016 11:32AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.