UPDATE SET
Modify existing rows
MutationSQL
UPDATE users SET email = 'newemail@example.com' WHERE id = 1;
What each clause does
UPDATE identifies the table. SET assigns new values to columns. WHERE limits which rows are modified.
Modify existing rows
MutationUPDATE users SET email = 'newemail@example.com' WHERE id = 1;
UPDATE identifies the table. SET assigns new values to columns. WHERE limits which rows are modified.