mySQL 更新字段依赖于 Select

mySQL Update field dependent on Select

我正在尝试更新一个 table 中的记录,该记录依赖于另一个 table 中的行。像这样:

UPDATE product_description SET description="" /* Nothing! */

WHERE product.product_id=product_description.product_id AND product.manufacturer_id=1
UPDATE product_description 
JOIN product ON product.product_id = product_description.product_id 
SET description = "" /* Nothing! */
WHERE product.manufacturer_id = 1