Files
leetcode/1757-recyclable-and-low-fat-products/1757-recyclable-and-low-fat-products.sql
T

7 lines
126 B
SQL

# Write your MySQL query statement below
SELECT
product_id
FROM
Products
WHERE
low_fats = 'Y' AND recyclable = 'Y'