I have two tables that look like this:
Value EntryID
0200 43300008191907010611241000917561326051
Value EntryID
test 43300008191907010611241000917561326051
I want to join them through an INNER JOIN at EntryID, but even if it is nvarchar, the connection does not work (I get nothing as a result, my new table is empty). Why?
SELECT * FROM
source
share