UST's payroll reporting team needs to identify employees earning the second-highest distinct salary. Write a PostgreSQL query that returns every employee tied at that salary and includes the department name when available.
| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee full name |
| salary | NUMERIC(12,2) | Annual employee salary |
| department_id | INT | References departments.department_id |
| Column | Type | Description |
|---|---|---|
| department_idPK | INT | Unique department identifier |
| department_name | VARCHAR(100) | Department name |