๐ป ๋ฌธ์ ๋งํฌ
https://leetcode.com/problems/recyclable-and-low-fat-products/?envType=study-plan&id=sql-i
Recyclable and Low Fat Products - LeetCode
Can you solve this real interview question? Recyclable and Low Fat Products - Table: Products +-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | low_fats | enum | | recyclable | enum | +-------------+---------
leetcode.com
๐ป ๋ฌธ์ ํ์
low fat์ด๊ณ , recyclable ํ ์ ํ์ ์กฐํํด์ผ ํ๋ ๋ฌธ์ ์ด๋ค.
์ฆ, ์กฐ๊ฑด์ ๋ง๋ ๋ฐ์ดํฐ๋ฅผ ์กฐํํ๋ฉด ๋๋ค.
๐ป ๋ฌธ์ ํด๊ฒฐ
- SELECT~ FROM ์ผ๋ก ์กฐํํ ํ์ ์ ํ
- WHERE๋ก ์กฐ๊ฑด ์
๋ ฅ
- low_fats์ recyclable ์ปฌ๋ผ ๋ชจ๋ Y ์ฌ์ผ ํ๊ธฐ ๋๋ฌธ์ and๋ก ๋ ์กฐ๊ฑด์ ๋ชจ๋ ๋ง์กฑํ๋๋ก ์์ฑํด์ค๋ค.
SELECT product_id
FROM Products
WHERE low_fats = 'Y' and recyclable = 'Y'
'Basic > [SQL] Leetcode ํ์ด๋ ธํธ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[LeetCode | Easy] 196. Delete Duplicate Emails (0) | 2023.03.19 |
---|---|
[LeetCode | Easy] 627. Swap Salary (0) | 2023.03.19 |
[LeetCode | Easy] 183. Customers Who Never Order (0) | 2023.03.17 |
[LeetCode | Easy] 584. Find Customer Referee (0) | 2023.03.17 |
[LeetCode | Easy] 595. Big Countries (0) | 2023.03.17 |