#75. [LeetCode / MySQL] 1757. Recyclable and Low Fat Products

문제

 

입력 코드

SELECT product_id
FROM Products
WHERE low_fats = 'Y' AND recyclable = 'Y'

 

코드 설명

#SELECT #WHERE #AND

 

 

문제 출처

 

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