Created
June 12, 2021 21:32
-
-
Save bartubozkurt/3470516e003f5e112807f77b14641889 to your computer and use it in GitHub Desktop.
The SET command is used with UPDATE to specify which columns and values that should be updated in a table.
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 Customers | |
SET ContactName = 'Alfred Schmidt', City= 'Frankfurt' | |
WHERE CustomerID = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment