Leetcode
-
[MySQL] LeetCode 185. Department Top Three Salaries 문제풀이, 답학습기록 : 데이터 분석 2025. 4. 15. 09:57
문제난이도 Hard | Topics | Companies | SQL Schema > Pandas SchemaTable: Employee+--------------+---------+| Column Name | Type |+--------------+---------+| id | int || name | varchar || salary | int || departmentId | int |+--------------+---------+id is the primary key (column with unique values) for this table.departmentId is a foreign key (reference column) o..
-
[MySQL] LeetCode 문제풀이 : 550. Game Play Analysis IV학습기록 : 데이터 분석 2025. 4. 9. 16:15
문제난이도 : MediumSQL Schema > Pandas SchemaTable: Activity+--------------+---------+| Column Name | Type |+--------------+---------+| player_id | int || device_id | int || event_date | date || games_played | int |+--------------+---------+(player_id, event_date) is the primary key (combination of columns with unique values) of this table.This table shows the activity of p..
-
[MySQL] LeetCode 문제풀이 : 1084. Sales Analysis III학습기록 : 데이터 분석 2025. 4. 8. 15:08
문제Table: Product+--------------+---------+| Column Name | Type |+--------------+---------+| product_id | int || product_name | varchar || unit_price | int |+--------------+---------+product_id is the primary key (column with unique values) of this table.Each row of this table indicates the name and the price of each product.Table: Sales+-------------+---------+| Column Name | Typ..