Xccelerated's engineering directory needs a report showing every employee who earns the company's maximum recorded salary. Write a PostgreSQL query that preserves qualifying employees even when their department is missing from the directory.
LEFT JOIN so a qualifying employee without a matching department is retained.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| salary | DECIMAL(10,2) | Annual employee salary |
| department_id | INT | Reference to the employee's department |
| Column | Type | Description |
|---|---|---|
| department_idPK | INT | Unique department identifier |
| department_name | VARCHAR(100) | Department name |