Oct 18, 2001 #1 wdu94 Programmer Aug 15, 2001 61 US Hello, I have 2 tables that have the same field name in these 2 table. I want to append the same field in one table. Thanks for your help. Jeannia
Hello, I have 2 tables that have the same field name in these 2 table. I want to append the same field in one table. Thanks for your help. Jeannia
Oct 18, 2001 #2 salma Technical User Aug 21, 2001 13 GB you can query the two tables seperately and then use a UNION command to merge the results eg. SELECT c1 FROM Table1 UNION SELECT c1 FROM Table2 there are several options for the UNION command which can be found in the SQLServer Books Online Upvote 0 Downvote
you can query the two tables seperately and then use a UNION command to merge the results eg. SELECT c1 FROM Table1 UNION SELECT c1 FROM Table2 there are several options for the UNION command which can be found in the SQLServer Books Online