Arcesium's workforce reporting team needs to identify employees whose compensation exceeds that of their direct manager. Write a PostgreSQL query using a self-join on the employees table.
NULL.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| manager_id | INT | References the direct manager's employee_id |
| salary | NUMERIC(12,2) | Annual employee salary |