@ddukbbok_kang

하고 싶은 건 일단 해봅니다.

SQL/LeetCode 3

[LeetCode Medium] 550. Game Play Analysis IV(MySQL)

✅ 본 게시글은 학습 목적으로 LeetCode 문제의 풀이과정을 정리한 것이며, 모든 자료의 출처는 LeetCode에 있습니다. Game Play Analysis IV - LeetCode Can you solve this real interview question? Game Play Analysis IV - Table: Activity +--------------+---------+ | Column Name | Type | +--------------+---------+ | player_id | int | | device_id | int | | event_date | date | | games_played | int | +--------- leetcode.com 지금까지 푼 리트코드 문제 중에 가장 어려..

SQL/LeetCode 2023.08.28

[LeetCode Medium] 176. Second Highest Salary(MySQL)

✅ 본 게시글은 학습 목적으로 LeetCode 문제의 풀이과정을 정리한 것이며, 모든 자료의 출처는 LeetCode에 있습니다. Second Highest Salary - LeetCode Can you solve this real interview question? Second Highest Salary - Table: Employee +-------------+------+ | Column Name | Type | +-------------+------+ | id | int | | salary | int | +-------------+------+ id is the primary key (column with unique values) leetcode.com 정답률 38.7%여서 조금 겁먹었지만..! ..

SQL/LeetCode 2023.08.26

[LeetCode Medium] 180. Consecutive Numbers(Lead, Lag 함수)(MySQL)

✅ 본 게시글은 학습 목적으로 LeetCode 문제의 풀이과정을 정리한 것이며, 모든 자료의 출처는 LeetCode에 있습니다. Consecutive Numbers - LeetCode Can you solve this real interview question? Consecutive Numbers - Table: Logs +-------------+---------+ | Column Name | Type | +-------------+---------+ | id | int | | num | varchar | +-------------+---------+ In SQL, id is the primary key for this table. leetcode.com LeetCode Medium 문제를 풀면서 '어..

SQL/LeetCode 2023.08.24