Leetcode 1757. Recyclable and Low Fat Products

Posted on Mon 02 September 2024 in Leetcode • Tagged with sql

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

Difficulty: Easy

Premium: False

Question

Table: Products

+-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | low_fats | enum | | recyclable | enum | +-------------+---------+ product_id is the primary key (column with unique values) for this table. low_fats is an ENUM (category) of type ('Y', 'N') where 'Y' …


Continue reading