このビットはうまく機能しています:
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
アドバイスをいただければ幸いです。