May 11, 2007 #1 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?
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?
May 11, 2007 1 #2 lespaul Programmer Feb 4, 2002 7,083 US 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 Upvote 0 Downvote
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
May 11, 2007 1 #3 PHV MIS Nov 8, 2002 53,708 FR INSERT INTO Checks (ID, TermID) SELECT DISTINCT ID, 1 FROM SALES Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
INSERT INTO Checks (ID, TermID) SELECT DISTINCT ID, 1 FROM SALES Hope This Helps, PH. FAQ219-2884 FAQ181-2886
May 11, 2007 Thread starter #4 bam720 Technical User Sep 29, 2005 289 US thank you both worked perfectly. Upvote 0 Downvote
May 11, 2007 Thread starter #5 bam720 Technical User Sep 29, 2005 289 US 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 Upvote 0 Downvote
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
May 11, 2007 #6 lespaul Programmer Feb 4, 2002 7,083 US 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 Upvote 0 Downvote
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
May 11, 2007 Thread starter #7 bam720 Technical User Sep 29, 2005 289 US The link didn't work. I'd be interested in seeing alternatives...Thank you Upvote 0 Downvote
May 11, 2007 #8 PHV MIS Nov 8, 2002 53,708 FR Leslie meant this: http://www.devshed.com/c/a/MySQL/Understanding-SQL-Joins Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
Leslie meant this: http://www.devshed.com/c/a/MySQL/Understanding-SQL-Joins Hope This Helps, PH. FAQ219-2884 FAQ181-2886
May 11, 2007 #9 lespaul Programmer Feb 4, 2002 7,083 US Forgot to include my signature line! thanks PHV for providing the link (bam - it was in one of my previous posts!) leslie Upvote 0 Downvote
Forgot to include my signature line! thanks PHV for providing the link (bam - it was in one of my previous posts!) leslie