employee_id from the Employees table where the employee_id is not present in the Salaries table.employee_id from the Salaries table where the employee_id is not present in the Employees table.employee_id in ascending order.
erDiagram
Employees {
int employee_id PK
varchar name
}
Salaries {
int employee_id PK
int salary
}