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!

Merging Data 2

Status
Not open for further replies.

bam720

Technical User
Sep 29, 2005
289
US
I am trying to merge two tables I have. Im looking to do something like this, but am unsure how to do it.

INSERT INTO Checks (ID, TermID)
VALUES (SELECT DISTINCT ID FROM SALES; ,1)

Will that work, or am I thinking about this wrong?
 
it needs to be structured like this (if TermID is a numeric field):
Code:
INSERT INTO Checks (ID, TermID)(SELECT DISTINCT ID, 1 FROM SALES)

Leslie

Anything worth doing is a lot more difficult than it's worth - Unknown Induhvidual

Essential reading for database developers:
The Fundamentals of Relational Database Design
Understanding SQL Joins
 
INSERT INTO Checks (ID, TermID)
SELECT DISTINCT ID, 1 FROM SALES

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
thank you both worked perfectly.
 
So I had soem key issues and need to update a time stamp. If I need to use two tables is it just:

INSERT INTO Checks (ID, TermID, Time)
SELECT DISTINCT ID, 1, Time FROM SALES,NewTime

Where Time only exists in NewTime Table? and ID only exists in Sales? Thanks again
 
that would work, you can read the article linked below to see how to do it other than the cartesian join that you've used: FROM Sales, NewTime

thanks for the star!

Leslie
 
The link didn't work. I'd be interested in seeing alternatives...Thank you
 
Forgot to include my signature line! thanks PHV for providing the link (bam - it was in one of my previous posts!)

leslie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top