LEET CODE : SQL 50-1757. Recyclable and Low Fat Products

Poulami Bhattacharyya
2 min readNov 23, 2023

--

An image of SQL 50 challenge dashboard
SQL 50 Challenge Day 1

Difficulty : Easy

1757. Recyclable and Low Fat Products

Table: Products

+-------------+---------+
| Column Name | Type |
+-------------+---------+
| product_id | int |
| low_fats | enum |
| recyclable | enum |
+-------------+---------+
product_id is the primary key (column with unique values) for this table.
low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not.
recyclable is an ENUM (category) of types ('Y', 'N') where 'Y' means this product is recyclable and 'N' means it is not.
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| product_id | int |
| low_fats | enum |
| recyclable | enum |
+-------------+---------+
product_id is the primary key (column with unique values) for this table.
low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' means this product is low fat and 'N' means it is not.
recyclable is an ENUM (category) of types ('Y', 'N') where 'Y' means this product is recyclable and 'N' means it is not.

Write a solution to find the ids of products that are both low fat and recyclable.

Return the result table in any order.

The 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.

Solution:

(Check Out Git Hub : https://github.com/poulamicode77/LeetCode/tree/main/SQL%2050/1757.Recyclable-and-Low-Fat-Products)

# Write your MySQL query statement below

SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y' ORDER BY product_id;

Query Breakdown:

select product_id columns: Select product_id
source table name: from Products

condition is product is low fat and recyclable = WHERE low_fats = ‘Y’ AND recyclable = ‘Y’ ORDER BY product_id;

--

--

Poulami Bhattacharyya

Electronics Engineer by Education, Application Developer by Profession, Polyglot by Passion .