UPDATE A SINGLE ROW, IDENTIFIED BY PRIMARY KEY

2. Update a single row, identified by primary key:

update products set product_description='DBA1 Exam Guide'where product_id=102;

This statement should return the message “1 row updated.”