1757. Recyclable and Low Fat Products
Description
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| product\_id | int |
| low\_fats | enum |
| recyclable | enum |
+-------------+---------+
product\_id is the primary key for this table.
low\_fats is an ENUM of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not.
recyclable is an ENUM of types ('Y', 'N') where 'Y' means this product is recyclable and 'N' means it is not.Products table:
+-------------+----------+------------+
| product\_id | low\_fats | recyclable |
+-------------+----------+------------+
| 0 | Y | N |
| 1 | Y | Y |
| 2 | N | Y |
| 3 | Y | Y |
| 4 | N | N |
+-------------+----------+------------+
Result table:
+-------------+
| product\_id |
+-------------+
| 1 |
| 3 |
+-------------+
Only products 1 and 3 are both low fat and recyclable.ac
Previous1756. Design Most Recently Used QueueNext1758. Minimum Changes To Make Alternating Binary String
Last updated