hello,
trying to compare two tables from diff db's, i have linked the table from one db into the other db.
query is as follows:
SELECT [Clients1].[ID], [Clients1].[name], [Clients1].[surname], [Clients1].[address], [Clients1].[hobbies], [Clients1].[age] FROM Clients1 LEFT JOIN Clients ON [Clients1].[ID] = [Clients].[ID] WHERE ([Clients].[ID] Is Null);
query was done using "Find Unmatched Query Wizard" so its not a syntax error. i have made obvious differences between the two tables data yet i get no results when i run the query, just an empty table shows.
can anyone advise as too what im doing wrong, read help file and far as i can see i done it correctly (yet, thats obviously not the case hehe).
i bow to your superior knowledge.
trying to compare two tables from diff db's, i have linked the table from one db into the other db.
query is as follows:
SELECT [Clients1].[ID], [Clients1].[name], [Clients1].[surname], [Clients1].[address], [Clients1].[hobbies], [Clients1].[age] FROM Clients1 LEFT JOIN Clients ON [Clients1].[ID] = [Clients].[ID] WHERE ([Clients].[ID] Is Null);
query was done using "Find Unmatched Query Wizard" so its not a syntax error. i have made obvious differences between the two tables data yet i get no results when i run the query, just an empty table shows.
can anyone advise as too what im doing wrong, read help file and far as i can see i done it correctly (yet, thats obviously not the case hehe).
i bow to your superior knowledge.