SQL Schema:
CREATE TABLE IF NOT EXISTS Products (
product_id int,
low_fats ENUM ('Y', 'N'),
recyclable ENUM ('Y', 'N'))
TRUNCATE TABLE Products
INSERT INTO Products (product_id, low_fats, recyclable)
VALUES ('0', 'Y', 'N')
INSERT INTO Products (product_id, low_fats, recyclable)
VALUES ('1', 'Y', 'Y')
INSERT INTO Products (product_id, low_fats, recyclable)
VALUES ('2', 'N', 'Y')
INSERT INTO Products (product_id, low_fats, recyclable)
VALUES ('3', 'Y', 'Y')
INSERT INTO Products (product_id, low_fats, recyclable)
VALUES ('4', 'N', 'N')
Table: Products
+-------------+---------+
| 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.
Write an SQL query to find the ids of products that are both low fat and recyclable.
Return the result table in any order.
The query result format is in the following example.
Example 1:
Input:
Products table:
+-------------+----------+------------+
| product_id | low_fats | recyclable |
+-------------+----------+------------+
| 0 | Y | N |
| 1 | Y | Y |
| 2 | N | Y |
| 3 | Y | Y |
| 4 | N | N |
+-------------+----------+------------+
Output:
+-------------+
| product_id |
+-------------+
| 1 |
| 3 |
+-------------+
Explanation: Only products 1 and 3 are both low fat and recyclable.
- Sunday, 17 April, 2022
- Runtime: 511 ms, faster than 53.74% of MySQL online submissions for Recyclable and Low Fat Products.
- Memory Usage: 0B, less than 100.00% of MySQL online submissions for Recyclable and Low Fat Products.
SELECT product_id
FROM Products
WHERE
(low_fats = 'Y' AND recyclable = 'Y');