SQL UPDATE Statement

SQL UPDATE Statement

The UPDATE statement is used to update records in a table.

The UPDATE Statement

The UPDATE statement is used to update existing records in a table.

SQL UPDATE Syntax

image

Note: Notice the WHERE clause in the UPDATE syntax. The WHERE clause specifies which record or records that should be updated. If you omit the WHERE clause, all records will be updated!

SQL UPDATE Example

The "Persons" table:

image

Now we want to update the person "Tjessem, Jakob" in the "Persons" table. We use the following SQL statement:

image

SQL UPDATE Warning

Be careful when updating records. If we had omitted the WHERE clause in the example above, like this:

image

Comments

Popular posts from this blog

XML Document Schema

Extended Relational-Algebra Operations.

Distributed Databases:Concurrency Control in Distributed Databases