/recyclable-and-low-fat-leetcode-challenge

This a sql leetcode challenge for Recyclable and Low Fat Products. The challenge seeks to query the database and display the ids of products that are both low fat and recyclable in regard to the data provided.

recyclable-and-low-fat-leetcode-challenge

This a sql leetcode challenge for Recyclable and Low Fat Products. The challenge seeks to query the database and display the ids of products that are both low fat and recyclable in regard to the data provided.

Challenge

1 2

My Solution

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

My Output

solution