クエリを実行する理由
SELECT
m.*
FROM
products_description pd,
products p
left join manufacturers m on p.manufacturers_id = m.manufacturers_id,
products_to_categories p2c
WHERE
p.products_carrot = '0' and
p.products_status = '1' and
p.products_id = p2c.products_id and
pd.products_id = p2c.products_id and
pd.language_id = '4' and
p2c.categories_id = '42'
GROUP BY manufacturers_id
ORDER BY COUNT(*)
次のエラーが発生する可能性があります。
#1111
-グループ関数の使用が無効です
MySQL5.0.51ではなくMySQL4.0.24で?