Explanation: Using UPDATE command you can change the data of a table. To increase the value of list price and cost of all products supplied by Global imports, Inc by 5.5 percent and the SUPPLIER_ID for global imports. Inc is 105 use the following command
UPDATE product
SET list_price = list_price * 1.055, COST = COST * 1.055
WHERE supplier_id = 105;