The warehouse management system needs to generate a report of "Eco-Friendly Healthy Picks" for the upcoming marketing campaign.
Write an SQL query to find the IDs of products that are both low fat and recyclable.
| product_id(INTEGER) | low_fats(ENUM('Y', 'N')) | recyclable(ENUM('Y', 'N')) |
|---|---|---|
| 0 | Y | N |
| 1 | Y | Y |
| 2 | N | Y |
| 3 | Y | Y |
| 4 | N | N |
| 5 | Y | Y |
| product_id(INTEGER) |
|---|
| 1 |
| 3 |
| 5 |