...

/

Updating and Deleting Data from Tables

Updating and Deleting Data from Tables

Learn how to update and delete data from tables in a database.

We'll cover the following...

Data in an MS SQL Server database is not read-only by default. We can update and delete data when needed.

The UPDATE command

It is possible to make changes to existing data in tables. To modify the data, we use the UPDATE command, with this basic syntax:

UPDATE TableSchema.TableName
SET Column1Name = [NewValue], Column2Name = [NewValue]
WHERE
...