When I try to run the following SQL, I get the error message "Operation Must Use A Updatable Query". Any idea how to fix this?
UPDATE suppprice SET suppp_price = (Select price from str_prices where str_prices.brand_name = suppprice.suppp_brand and str_prices.product_url = suppprice.suppp_kurl AND str_prices.product_name = suppprice.suppp_knm)
WHERE company_id=2;
UPDATE suppprice SET suppp_price = (Select price from str_prices where str_prices.brand_name = suppprice.suppp_brand and str_prices.product_url = suppprice.suppp_kurl AND str_prices.product_name = suppprice.suppp_knm)
WHERE company_id=2;