An HR database audit has revealed that some employee records are incomplete. Some employees have a name registered but no salary data, while others have salary data but no name registered.
Your task is to find the IDs of all employees who have missing information (either the name or the salary).
Rules:
- Return the result table with a single column employee_id.
- An employee is missing information if their ID appears in only one of the two main tables (Employees or Salaries).
- Results must be sorted by employee_id in ascending order.