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.
문제 조건
low_fats, recyclable인 제품의 id를 출력하시오
문제 풀이
SELECT product_id
FROM Products
WHERE low_fats = 'Y'
AND recyclable = 'Y'
'SQL > LeetCode' 카테고리의 다른 글
[1789#_EASY] Primary Department for Each Employee (0) | 2022.07.31 |
---|---|
[1777#_EASY] Product's Price for Each Store (0) | 2022.07.31 |
[1212#_MEDIUM]Team Scores in Football Tournament (0) | 2022.07.29 |
[1205#_MEDIUM] Monthly Transactions II (0) | 2022.07.26 |
[1741_EASY] Find Total Time Spent by Each Employee (0) | 2022.07.26 |