LeetCode_Study_Plan/SQL
-
1757. Recyclable and Low Fat Products mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:43
https://leetcode.com/problems/recyclable-and-low-fat-products/ Recyclable and Low Fat Products - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select product_id from products where low_fats = 'Y' and recyclable = 'Y';
-
595. Big Countries mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:40
https://leetcode.com/problems/big-countries/?envType=study-plan&id=sql-i Big Countries - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select name, population, area from World where area >= 3000000 or population >= 25000000;