My issue
SELECT
d.product_type,
d.product_id,
d.units_sold,
d.month
FROM
division_product_sales d
JOIN
monthly_sales s
ON d.month = s.month
WHERE
d.product_type = ‘High_Margin’;
how to pass this query test case
My code
# cook your dish here
SELECT
d.product_type,
d.product_id,
d.units_sold,
d.month
FROM
division_product_sales d
JOIN
monthly_sales s
ON d.month = s.month
WHERE
d.product_type = 'High_Margin';
Learning course: Database management systems
Problem Link: Project - JOIN and Filtering in Database management systems