Persistent Systems wants to identify the second-highest distinct salary in its engineering workforce. Write a PostgreSQL query using the employees table, without using the LIMIT keyword.
second_highest_salary.NULL if there is no salary below the maximum salary.LIMIT.| Column | Type | Description |
|---|---|---|
| employee_idPK | INTEGER | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| department | VARCHAR(80) | Employee's department |
| salary | NUMERIC(10,2) | Annual salary |