SELECT pc.Product_type, dps.Product_ID, dps.Units_Sold, dps.Month -- Corrected to se

SELECT
pc.Product_type,
dps.Product_ID,
dps.Units_Sold,
dps.Month – Corrected to select the month from division_product_sales
FROM
product_catalog pc
JOIN
division_product_sales dps ON pc.Product_ID = dps.Product_ID
WHERE
pc.Product_type = ‘High_Margin’;

SELECT
pc.Product_type,
dps.Product_ID,
dps.Units_Sold,
dps.Month – Corrected to select the month from division_product_sales
FROM
product_catalog pc
JOIN
division_product_sales dps ON pc.Product_ID = dps.Product_ID
WHERE
pc.Product_type = ‘High_Margin’;