Skip to content

Latest commit

 

History

History

1757. Recyclable and Low Fat Products

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Solution

# Write your MySQL query statement below
select product_id from Products where low_fats = "Y" and recyclable = "Y";

LeetCode