这个位工作得很好:
SELECT products_id, sum(attributes_stock)
FROM products_attributes
GROUP BY products_id
它将attributes_stock
列中的所有字段组加在一起。
我遇到的问题是让这个结果更新另一个表中的另一个列。
这就是我所拥有的:
UPDATE products, products_attributes
SET products.products_quantity = sum(products_attributes.attributes_stock) GROUP BY products_attributes.products_id
WHERE products.products_id = products_attributes.products_id
非常感谢任何建议。