Ness Digital Engineering needs a salary review query for its employee reporting system. Write a PostgreSQL query that identifies every employee whose salary is the third-highest distinct salary in the salary table.
employees and return employee details with the salary.employee_id.salary_amount is NULL; they must not take part in the ranking.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| full_name | VARCHAR(100) | Employee full name |
| department | VARCHAR(80) | Ness department |
| job_title | VARCHAR(100) | Employee job title |
| Column | Type | Description |
|---|---|---|
| salary_idPK | INT | Unique salary record identifier |
| employee_id | INT | Employee identifier associated with the salary record |
| salary_amount | NUMERIC(12,2) | Employee salary amount |