Tavant's ignio staffing dashboard needs a salary view for workforce planning. Write a PostgreSQL query that returns employees earning one of the five highest distinct salaries among active employees.
NULL salary. Order the result by salary descending and employee name ascending.| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee full name |
| department_id | INTEGER | Referenced department identifier |
| salary | NUMERIC(10,2) | Annual employee salary |
| employment_status | VARCHAR(20) | Current employment status |
| Column | Type | Description |
|---|---|---|
| department_idPK | INTEGER | Unique department identifier |
| department_name | VARCHAR(100) | Department display name |