T
Tara
I need help with the structure of the following SQL statement. The Append
query works, but I only want it to append records that have not already been
appended. I know the WHERE statement needs to be adjusted, but I'm not sure
how. Thanks for any input!
INSERT INTO tblTransition( ScreenNum )
SELECT tblDemographics.ScreenNum
FROM tblDemographics
WHERE(((tblDemographics.ScreenNum)=[Forms]![frmTransition]![ScreenNum]));
query works, but I only want it to append records that have not already been
appended. I know the WHERE statement needs to be adjusted, but I'm not sure
how. Thanks for any input!
INSERT INTO tblTransition( ScreenNum )
SELECT tblDemographics.ScreenNum
FROM tblDemographics
WHERE(((tblDemographics.ScreenNum)=[Forms]![frmTransition]![ScreenNum]));