Write a SQL query to list employees with the 4th through 11th lowest salaries.
Use the employees table. Treat each employee as a separate position, order salaries ascending, place NULL salaries last, and break salary ties by employee_id ascending.
employee_id, employee_name, salary, salary_positionsalary_position| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's full name |
| salary | NUMERIC(10,2) | Annual employee salary |