Member since
09-04-2017
7
Posts
0
Kudos Received
0
Solutions
09-07-2017
06:29 PM
select c.category_name, count(order_item_quantity) as count from order_items oi inner join products p on oi.order_item_product_id = p.product_id inner join categories c on c.category_id = p.product_category_id group by c.category_name order by count desc limit 10; i have the same error too AnalysisException: Could not resolve table reference: 'products
... View more