Last active
August 28, 2018 12:05
-
-
Save fsuuaas/858a976cf726b0b7649bb1ce31ce93a4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 table_name1 | |
| SET column1 = ( | |
| SELECT column2 | |
| FROM table_name2 | |
| WHERE table_name1.id = table_name2.id | |
| ); | |
| UPDATE `table` SET test=number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment