Given two tables, write a query to identify records that exist in one but not the other without using EXCEPT.
For this exercise, compare source_records with target_records using record_id. Return records present in source_records that have no matching record in target_records.
record_id and record_name.record_id in ascending order.| Column | Type | Description |
|---|---|---|
| record_idPK | INT | Unique identifier for the source record |
| record_name | VARCHAR(100) | Descriptive name of the source record |
| record_status | VARCHAR(20) | Current status of the source record |
| Column | Type | Description |
|---|---|---|
| record_idPK | INT | Unique identifier for the target record |
| record_name | VARCHAR(100) | Descriptive name of the target record |
| record_status | VARCHAR(20) | Current status of the target record |