문제 출저
문제 풀이
Products 테이블의 low_facts와 recycleable의 모두 Y인 경우의 데이털르 구해야 합니다.
where 절을 사용하여 조건에 맞는 행을 가져옵니다.
SQL
# Write your MySQL query statement below
select
product_id
from
Products
where
low_fats = 'Y'
and recyclable = 'Y'