I am trying to figure how to update a linked SQL table with information in a local table. Until yesterday I had no experience with pass through queries so the learning curve is vertical. The following Access query shows the records that need to updated but I can't seem to be able to write the SQL pass through. Can you "show the way"?
SELECT DISTINCT iftadata.*
FROM OldIFTA INNER JOIN iftadata ON (OldIFTA.RETPERYM = iftadata.RETPERYM) AND (OldIFTA.FUTSNO = iftadata.FUTSNO);
I get an error message about the table Oldifta. I presume it not looking local to find it. Thanks in advance for your help.
SELECT DISTINCT iftadata.*
FROM OldIFTA INNER JOIN iftadata ON (OldIFTA.RETPERYM = iftadata.RETPERYM) AND (OldIFTA.FUTSNO = iftadata.FUTSNO);
I get an error message about the table Oldifta. I presume it not looking local to find it. Thanks in advance for your help.