Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

append

Status
Not open for further replies.

dashusa

Programmer
Mar 27, 2006
46
US
hello,
I have a database with four tables:two are orders and two are vendor names. I want to merge the Vendor names so i can reduce it to just three tables and not have duplicate data i think i should use the append query but not sure how to do this..
Thanks in advance
D
 

INSERT INTO NEWVENDOR (SELECT * FROM VENDOR1 UNION SELECT * FROM VENDOR2)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top