LeetCode : Recyclable and Low Fat Products
Question:https://leetcode.com/problems/recyclable-and-low-fat-products/description/?envType=study-plan&id=sql-i
Solution:
# Write your MySQL query statement below
select product_id from Products Where low_fats = 'Y' and recyclable ='Y'
Comments
Post a Comment