G
Guest
I am using Office 2003 on Excel XP.
I need to append all records from T1 INTO T2, if [T2].[Period] = 2 and the
account number appears in T1 but NOT in T2. Would the following SQL do the
trick?
INSERT INTO [T2] SELECT * FROM [T1] WHERE [T1].[Period] = 2 AND
[T2].Account <> [T1].Account
Can someone please help me out? Thanks a lot in advance.
I need to append all records from T1 INTO T2, if [T2].[Period] = 2 and the
account number appears in T1 but NOT in T2. Would the following SQL do the
trick?
INSERT INTO [T2] SELECT * FROM [T1] WHERE [T1].[Period] = 2 AND
[T2].Account <> [T1].Account
Can someone please help me out? Thanks a lot in advance.