Created
September 7, 2023 12:04
-
-
Save Guley/695580862c551677073c4a9d29570bad to your computer and use it in GitHub Desktop.
Update multiple columns in one table based on values in another table in mysql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE tableA JOIN tabelB USING (id) | |
SET tableA.column = tabelB.column |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment