Please help. I'm trying to update this one table with the current count of assets our products have. If the product already exist in the table, it should update the most updated count of the product. However, using the query below, mysql is returning me
"ERROR 1111 (HY000): Invalid use of group function".
I can't determine what's my error or if it is really valid to use count in function 'on duplicate key':
INSERT INTO report_count_assets
SELECT products.product_id,
count(product_assets.asset_id),
count(case when assets.asset_type_id=1 THEN 1 END),
count(case when assets.asset_type_id=2 THEN 1 END),
count(case when assets.asset_type_id=3 THEN 1 END),
count(case when assets.asset_type_id=11 THEN 1 END)
FROM products
LEFT JOIN product_assets USING (product_id)
LEFT JOIN assets USING (asset_id)
WHERE products.brand_id=671
ON DUPLICATE KEY UPDATE
asset_count = count(product_assets.asset_id),
asset_type_image = count(case when assets.asset_type_id=1 THEN 1 END),
asset_type_video = count(case when assets.asset_type_id=2 THEN 1 END),
asset_type_sound = count(case when assets.asset_type_id=3 THEN 1 END),
asset_type_install = count(case when assets.asset_type_id=11 THEN 1 END);
I don't think you can use aggregate functions in the
ON DUPLICATE
. MySQL sees your SQL sort of like this:The ON DUPLICATE doesn't know what's going on in
expr
, it only knows that it has a single duplicate row to deal with. Without knowing what's going on insideexpr
, there is no context for thecount
s to operate on. Also, you're supposed to usevalues
in the UPDATE:And
values(count(x))
is not valid syntax. Butvalues(column_name)
is valid so this should work:I had to guess the name of the
product_id
column inreport_count_assets
.If that doesn't work (as apparently it doesn't), then you can do it the hard way by precomputing the SELECT. Create a temporary table:
Populate it:
And then use that temporary table to do the insert that you really want to do: