My issue
SELECT
dps.Product_type,
dps.Product_id,
dps.Units_sold,
ms.Month
FROM
division_product_sales dps
JOIN
monthly_sales ms
ON dps.Month = ms.Month
WHERE
dps.Product_type = ‘High_Margin’;
My code
SELECT
dps.Product_type,
dps.Product_id,
dps.Units_sold,
ms.Month
FROM
division_product_sales dps
JOIN
monthly_sales ms
ON dps.Month = ms.Month
WHERE
dps.Product_type = 'High_Margin';
Learning course: Database management systems
Problem Link: Project - JOIN and Filtering in Database management systems