How do you update rows in a database table?
UPDATE “tableName”
SET “columnName” = ‘newDataInsert’
WHERE “row” = ‘valueYouAreQueryingFor’
RETURNING *;
Why is it important to include a where clause in your update statements?
because without the WHERE clause it would update every row in the table