Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created June 13, 2021 08:16
Show Gist options
  • Save bartubozkurt/121c7b3892dbc6ef9df1142c46d59a4f to your computer and use it in GitHub Desktop.
Save bartubozkurt/121c7b3892dbc6ef9df1142c46d59a4f to your computer and use it in GitHub Desktop.
The UPDATE statement is used to modify the existing records in a table.
UPDATE table_name
SET column1 = value1,
column2 = value2, ...
WHERE condition;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment