SQL Quickies - Update Statement

Reminder on Update Statement Syntax

This quickie is a reminder on how to use the SQL Update statement

UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;