From d012a248be4f2b5122142a12401100074378f3f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Thu, 30 May 2024 17:10:55 -0600 Subject: [PATCH] Time: 891 ms (86.19%), Space: 0B (100.00%) - LeetHub --- .../1757-recyclable-and-low-fat-products.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 1757-recyclable-and-low-fat-products/1757-recyclable-and-low-fat-products.sql diff --git a/1757-recyclable-and-low-fat-products/1757-recyclable-and-low-fat-products.sql b/1757-recyclable-and-low-fat-products/1757-recyclable-and-low-fat-products.sql new file mode 100644 index 0000000..09d6c0d --- /dev/null +++ b/1757-recyclable-and-low-fat-products/1757-recyclable-and-low-fat-products.sql @@ -0,0 +1,2 @@ +# Write your MySQL query statement below +SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y'; \ No newline at end of file