Wipro's workforce planning team needs to identify the department or departments containing the highest-paid employees. Write a PostgreSQL query that returns every department tied for the highest maximum employee salary.
departments with employees, preserving departments even when they have no employees.| Column | Type | Description |
|---|---|---|
| department_idPK | INTEGER | Unique department identifier |
| department_name | VARCHAR(80) | Department name |
| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee name |
| department_id | INTEGER | Department assigned to the employee |
| salary | NUMERIC(12,2) | Annual employee salary |