Help me in solving SQW29 problem

My issue

what is the name of the table

My code

SELECT dps.product_type, 
       dps.product_id, 
       dps.units_sold, 
       dps.month
FROM division_product_sales dps
JOIN monthly_sales ms 
    ON dps.month = ms.month
WHERE dps.product_type IN ('Jeans', 'Tshirt', 'Trousers', 'Innerwear') 
  AND ms.product_type = 'High_Margin'
ORDER BY dps.month;

Learning course: Database management systems
Problem Link: Project - JOIN and Filtering in Database management systems