We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent141b0c4 commit9d2b2edCopy full SHA for 9d2b2ed
README.md
@@ -1122,6 +1122,7 @@ _If you like this project, please leave me a star._ ★
1122
1123
| # | Title | Solutions | Video | Difficulty | Tag
1124
|-----|----------------|---------------|---------------|---------------|-------------
1125
+|1757|[Recyclable and Low Fat Products](https://leetcode.com/problems/recyclable-and-low-fat-products/)|[Solution](../master/database/_1757.sql)|| Easy|
1126
|1729|[Find Followers Count](https://leetcode.com/problems/find-followers-count/)|[Solution](../master/database/_1729.sql)|| Easy|
1127
|1709|[Biggest Window Between Visits](https://leetcode.com/problems/biggest-window-between-visits/)|[Solution](../master/database/_1709.sql)|| Medium|
1128
|1693|[Daily Leads and Partners](https://leetcode.com/problems/daily-leads-and-partners/)|[Solution](../master/database/_1693.sql)|| Easy|
database/_1757.sql
@@ -0,0 +1,2 @@
1
+--# Write your MySQL query statement below
2
+select product_idfrom Productswhere low_fats='Y'and recyclable='Y';