A company is integrating a new workforce planning platform with its existing HR system. Write a SQL query to ensure data accuracy by identifying discrepancies in employee records between the two systems.
employees table from the HR system with the workforce_planning table using employee_id.| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique identifier for each employee |
| name | VARCHAR(255) | Employee's name |
| active | BOOLEAN | Indicates if the employee is currently active |
| department | VARCHAR(255) | Department where the employee works |
| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique identifier for each employee in workforce planning |
| name | VARCHAR(255) | Employee's name as recorded in workforce planning |
| position | VARCHAR(255) | Position of the employee in workforce planning |