leetcode185
-
[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..