Jio's workforce analytics team needs a simple report showing the three employees with the highest annual salaries. Write a PostgreSQL query using the employees table.
NULL salaries as unranked, and use employee ID as a deterministic tie-breaker.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| annual_salary | DECIMAL(12,2) | Annual salary in Indian rupees |
| department | VARCHAR(80) | Employee's department |