To increase the shipping cost of every purchase from manufacturers in Massachusetts by 10%, you can use the Above update statement
This statement will update the shipping_cost column in the purchase61 table for every purchase where the manufacturer is in the list of manufacturers in Massachusetts, as determined by the subquery. The shipping cost will be increased by 10% by multiplying it by 1.10.
Note that you should round the calculations to two decimal points by using the ROUND function. You could modify the statement as follows:
UPDATE purchase61
SET shipping_cost = shipping_cost * 1.10
WHERE manufacturer IN (SELECT manufacturer FROM purchaseitem61 WHERE state = 'MA')
To Learn More About SQL, Check Out
https://brainly.com/question/13068613
#SPJ1