My issue
solve it
My code
/* Write a query to output the following
- product_id, units_sold and month of sale for all high margin products sold in the year */
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