Your question is SQL Highest Salary. Start with the requirements and the one table on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Finastra is reviewing compensation data for employees supporting products such as Fusion. Write a PostgreSQL query that returns the single employee with the highest recorded salary.
NULL.employee_id for deterministic output.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| department | VARCHAR(80) | Employee's department |
| salary | NUMERIC(12,2) | Annual salary, which may be unavailable |