Decision Point wants to compare compensation among currently active employees. Write a PostgreSQL query that returns every active employee who earns the second highest distinct salary, along with their department.
employment_status is Active and whose salary is not NULL.DENSE_RANK is preferable to ROW_NUMBER when tied salaries should share a rank.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| department_id | INT | References departments.department_id |
| salary | NUMERIC(12,2) | Annual employee salary |
| employment_status | VARCHAR(20) | Current employment status |
| Column | Type | Description |
|---|---|---|
| department_idPK | INT | Unique department identifier |
| department_name | VARCHAR(100) | Department display name |