employee_id from the Employees table.WHERE clause to filter for employees with a salary less than $30000.WHERE clause, check that the manager_id is not present in the list of employee_ids in the Employees table, indicating the manager has left.employee_id.
erDiagram
Employees {
int employee_id PK
varchar name
int manager_id FK
int salary
}