Practice a LEFT JOIN unmatched check by predicting which orders keep NULL customer cells after the join and filter.
Orders input
Mark each order key as matched, missing, or NULL before looking at the query.
classify order keys
Customers input
Use the customer table as the exact list of keys that can match.
available customer keys
Join query
LEFT JOIN first, then keep only rows where the right customer key is NULL.
LEFT JOIN unmatched check
Joined output
The output is the hand-check list of unmatched left rows.
check unmatched orders