1757. Recyclable and Low Fat Products (SQL) === ``` # Write your MySQL query statement below SELECT product_id FROM Products WHERE low_fats='Y' AND recyclable='Y'; ```