LeetCode(2)
-
[LeetCode/MySQL50] 1683. Invalid Tweets
ProblemSolution# Write your MySQL query statement belowSelect tweet_id from Tweets where length(content) > 15;
2025.01.13 -
[LeetCode/MySQL50] 1757. Recyclable and Low Fat Products
MySQL도 다시 복습할 겸 시작하는 LeetCode MySQL 50 문제 풀기 ProblemSolution# Write your MySQL query statement belowSELECT product_id FROM Products WHERE low_fats = "Y" and recyclable = "Y"; 매우 기본적인 Select 구문 연습 문제였다. 다른 독특한 코드가 있나 봤지만 딱히 없으므로 첫번째 문풀은 여기서 마무리 문제https://leetcode.com/studyplan/top-sql-50/
2025.01.11