D
Dale Fye
I'm trying to write a query that will allow me to append records from
one database that do not already exist in my destination database. I
know how to select records from the source database, but when I try to
create a query that joins the two tables, on in the source and the
other in the destination, I get an error (Syntax error in FROM Clause)
and the cursor highlights the LEFT in Left Join.
Anyone know how to rewrite this to allow me to link the two tables
from different databases? I know I could import the source table, but
figure that would take longer.
SELECT S.*, D.*
FROM tbl_Observations S IN 'H:\Events\Unified Course (Oct
03)\export1.mdb'
LEFT JOIN tbl_Objectives AS D ON S.Obs_ID = D.Obs_ID AND S.Obsn_ID =
D.Obsn_ID
WHERE D.Obs_ID IS NULL
one database that do not already exist in my destination database. I
know how to select records from the source database, but when I try to
create a query that joins the two tables, on in the source and the
other in the destination, I get an error (Syntax error in FROM Clause)
and the cursor highlights the LEFT in Left Join.
Anyone know how to rewrite this to allow me to link the two tables
from different databases? I know I could import the source table, but
figure that would take longer.
SELECT S.*, D.*
FROM tbl_Observations S IN 'H:\Events\Unified Course (Oct
03)\export1.mdb'
LEFT JOIN tbl_Objectives AS D ON S.Obs_ID = D.Obs_ID AND S.Obsn_ID =
D.Obsn_ID
WHERE D.Obs_ID IS NULL