My issue
help
My code
SELECT
pc.product_type,
dps.product_id,
dps.units_sold,
dps.month
FROM
division_product_sales dps
JOIN
product_catalog pc ON dps.product_id = pc.product_id
JOIN
monthly_sales ms ON dps.month = ms.month
WHERE
pc.product_tag = 'High_Margin';
Learning course: Database management systems
Problem Link: Project - JOIN and Filtering in Database management systems