Modify one or more records.
Section: Insert, update, delete, and upsert
Update matching rows
sql
sql
UPDATE users SET timezone = 'America/Los_Angeles' WHERE id = 1;Explanation
Always verify the WHERE clause when running updates interactively.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Insert, update, delete, and upsert