Write SQL to retrieve the second-highest salary from a table.
Return the second-highest distinct, non-null salary. If fewer than two distinct salary values exist, return no rows.
second_highest_salary| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee name |
| salary | NUMERIC(10,2) | Employee salary |