Created
August 13, 2019 02:16
-
-
Save shiraji/ea3a0415760af87b0ae493c9b362ae9d 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 bar set text = 'aaa', text2 = 'bbb' where id = 2043; | |
update bar set (text, text2) = ('aaa', 'bbb') where id = 2043; | |
update bar set text1 = 'aaa', text2 = 'bbb' where id = 2043; | |
update bar set (text1, text2) = ('aaa', 'bbb') where id = 2043; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment