I'm having trouble with Access, when joining two tables where one of the join columns is of varchar and the other of guid type.
The generated SQL statement looks as follows:
INSERT INTO adnVFD
SELECT dbo_adnVFD.*
FROM PRC INNER JOIN dbo_adnVFD ON PRC.PrcId = dbo_adnVFD.VarType;
I tried to convert the PRC.PrcId
column using the StringFromGUID
function, so that both columns should be of the same type. But without success.
Any ideas about how to solve this issue?