inblog logo
|
stupefyee
    SQL문제풀기

    [SQL 문제 풀이] Recyclable and Low Fat Products

    Stupefyee's avatar
    Stupefyee
    Apr 30, 2025
    [SQL 문제 풀이] Recyclable and Low Fat Products
    Contents
    내가 작성한 쿼리
    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 | +-------------+---------+ 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.
    Recyclable and Low Fat Products - LeetCode
    https://leetcode.com/problems/recyclable-and-low-fat-products/description/
    Recyclable and Low Fat Products - LeetCode
    notion image
    저지방이면서 재활용 가능한 제품의 ID를 찾기 위한 해결책을 작성하세요. 결과 테이블을 순서에 상관없이 반환하세요.
     

    내가 작성한 쿼리

    MySQL, Oracle

    SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y';
    Share article
    Contents
    내가 작성한 쿼리

    stupefyee

    RSS·Powered by Inblog