update statement in SQL

The update statement changes the data of one or more records in a table.
```
update Person set id = 2 where id = 1;
```