1757. Recyclable and Low Fat Products

SQL 50道

内容持续更新…(始于2024年08月03日)

1.问题

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.

Example 1:

Input:
Products table:
±------------±---------±-----------+
| product_id | low_fats | recyclable |
±------------±---------±-----------+
| 0 | Y | N |
| 1 | Y | Y |
| 2 | N | Y |
| 3 | Y | Y |
| 4 | N | N |
±------------±---------±-----------+
Output:
±------------+
| product_id |
±------------+
| 1 |
| 3 |
±------------+
Explanation: Only products 1 and 3 are both low fat and recyclable.

2. 解题思路

方法1:

  1. 明确查询目标:从 Products 表中获取 product_id。
  2. 明确查询条件:需要同时满足两个条件:
  • low_fats 列的值为 ‘Y’。
  • recyclable 列的值为 ‘Y’。
  1. 构建 SQL 查询语句:使用 SELECT 语句选择 product_id,并用 WHERE 子句添加过滤条件。

3. 代码

代码1:

select product_id
from Products where 
low_fats ='Y' 
and recyclable ='Y';

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值