Question.. create an SQL update statement which doubles the P_DISCOUNT for all products provided by vendors in TN or FL I have 2 tables and i'm trying to reference the vendor table which contains the states and the p_discount is located in the product table.
update PRODUCT
set P_DISCOUNT = 2 * P_DISCOUNT
where VENDOR.V_STATE in
(select VENDOR.V_STATE from VENDOR where VENDOR.V_STATE = ('FL','TN'))
any suggestions would be great
Thank you,
PRODUCTandVENDOR? What column joins these tables?