Lesson 7


Changing data in a SQL Database using Update

In this lesson you will use the update statement to change records in a database

Concepts used in this lesson include:

SQL Update – used to update data

Commands used in this lesson include

update customer set email=’jane.doe@company.org’ where customer_id=1;
— Important do not forget the where clause