Q
QB
I created the following basic Append query
INSERT INTO tbl_Clients ( ClientName )
SELECT [Tmp_Imp].[Client Name]
FROM [Tmp_Imp]
GROUP BY [Tmp_Imp].[Client Name];
But now I need to add a twist, I need to only append those Clients that do
not already exist in the table already. How would I go about this?
Thank you,
QB
INSERT INTO tbl_Clients ( ClientName )
SELECT [Tmp_Imp].[Client Name]
FROM [Tmp_Imp]
GROUP BY [Tmp_Imp].[Client Name];
But now I need to add a twist, I need to only append those Clients that do
not already exist in the table already. How would I go about this?
Thank you,
QB