DEV Community

Debesh P.
Debesh P.

Posted on

1757. Recyclable and Low Fat Products | LeetCode | SQL 50 | Interview Questions | MySQL

Problem Link

https://leetcode.com/problems/recyclable-and-low-fat-products/


leetcode 1757


Solution

# Write your MySQL query statement below
select
    product_id
    from Products
where
    low_fats='Y'
    and
    recyclable='Y';
Enter fullscreen mode Exit fullscreen mode

Top comments (0)