难度:简单
表:
Products
+-------------+---------+ | Column Name | Type | +-------------+---------+ | product_id | int | | low_fats | enum | | recyclable | enum | +-------------+---------+ 在 SQL 中,product_id 是这个表的主键。 low_fats 是枚举类型,取值为以下两种 ('Y', 'N'),其中 'Y' 表示该产品是低脂产品,'N' 表示不是低脂产品。 recyclable 是枚举类型,取值为以下两种 ('Y', 'N'),其中 'Y' 表示该产品可回收,而 'N' 表示不可回收。查找既是低脂又是可回收的产品编号。
返回结果 无顺序要求 。
查询结果格式如下例所示:
示例 1:
输入: Products 表: +-------------+----------+------------+ | product_id | low_fats | recyclable | +-------------+----------+------------+ | 0 | Y | N | | 1 | Y | Y | | 2 | N | Y | | 3 | Y | Y | | 4 | N | N | +-------------+----------+------------+ 输出: +-------------+ | product_id | +-------------+ | 1 | | 3 | +-------------+ 解释: 只有产品 id 为 1 和 3 的产品,既是低脂又是可回收的产品。题解:
# Write your MySQL query statement below select product_id from Products where low_fats='Y' and recyclable='Y';
leetcode:1757. 可回收且低脂的产品
最新推荐文章于 2024-11-05 21:58:11 发布
该文章描述了一个SQL查询任务,目标是从Products表中找出low_fats为Y且recyclable为Y的产品的product_id。查询语句已给出:`SELECTproduct_idFROMProductsWHERElow_fats=YANDrecyclable=Y;`
摘要由CSDN通过智能技术生成