SQL Flashcards

1
Q

@1757. Recyclable and Low Fat Products

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’ means this product is low fat and ‘N’ means it is not.
recyclable is an ENUM (category) of types (‘Y’, ‘N’) where ‘Y’ means this product is recyclable and ‘N’ means it is not.

Write a solution to find the ids of products that are both low fat and recyclable.

Return the result table in any order.

The result format is in the following example.

A
SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y';
How well did you know this?
1
Not at all
2
3
4
5
Perfectly