benlinkknilneb
Programmer
Hi all,
If I have TableA and TableB, and the only difference between them is an autonumber field (it's in A, not in B), how do I add each record from B into A in a query? In Access, there is an "Append" query that looks like this:
...but I don't know how to set it up in SQL Server (2k)...
Ben
If I have TableA and TableB, and the only difference between them is an autonumber field (it's in A, not in B), how do I add each record from B into A in a query? In Access, there is an "Append" query that looks like this:
Code:
INSERT INTO TableA( a, b, c, d, e )
SELECT A, B, C, D, E FROM TableB;
Ben