|
It is because when the two tables are defined, the Collation of the HoldNumber field is different.
You can use sp_help to see what the Collation of the HoldNumber field in these two tables are ~
If they are not the same, there are two situations:
1. Change the Collation of the HoldNumber field in a table to make the Collation of the two tables the same
2.Add Collate conditions to explicitly specify Collation when querying |
|