
SQL | LeetCode 185. DENSE_RANK()로 부서별 Top 3 급여자 구하기

·
Computer Science/SQL
Table: 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) of the ID from the Department table.Each row of this table in..