Problem: 1757. 可回收且低脂的产品
Code
MySQL
# Write your MySQL query statement below
select product_id
from Products
where low_fats = "Y"
AND recyclable = "Y";
Problem: 1757. 可回收且低脂的产品
# Write your MySQL query statement below
select product_id
from Products
where low_fats = "Y"
AND recyclable = "Y";