SELECT product_id,time_id,customer_id,promotion_id,store_id,store_sales,store_cost,SUM(unit_sales) total_unit_sales
FROM sales_fact_1997 a
LEFT JOIN product p ON (a.product_id = p.product_id)
group by product_id order by total_unit_sales;
なぜエラーが発生するのか疑問に思っています:
フィールド リストの列 'product_id' があいまいです
私が参照している両方のテーブルには、product_id の列があります。
前もって感謝します...