MySQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesMySQL Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old June 25th, 1999, 01:01 PM
Jeff
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Hi,

I'm trying to copy data from one table to another. I have 2 tables that are structured like this:

+-------------------+-----------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------------+-----------------------+------+-----+---------+----------------+
| InsertID | int(10) unsigned | | PRI | 0 | auto_increment |
| sessionID | char(48) | | MUL | | |
| productID | char(10) | | | | |
| short_description | char(48) | YES | | NULL | |
| description | char(96) | YES | | NULL | |
| quantity | char(6) | YES | | NULL | |
| retail | decimal(10,2) | YES | | NULL | |
| item_total | decimal(10,2) | YES | | NULL | |
| date | timestamp(6) | YES | | NULL | |
| weight | mediumint(8) unsigned | YES | | NULL | |
+-------------------+-----------------------+------+-----+---------+----------------+
10 rows in set (0.00 sec)

mysql> desc transactionDetail;
+---------------+-----------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------------+-----------------------+------+-----+---------+-------+
| insertID | mediumint(8) unsigned | | PRI | 0 | |
| transactionID | mediumint(8) unsigned | | | 0 | |
| productID | char(10) | YES | | NULL | |
| quantity | char(10) | YES | | NULL | |
| retail | decimal(10,2) | YES | | NULL | |
| item_total | decimal(10,2) | YES | | NULL | |
+---------------+-----------------------+------+-----+---------+-------+

I'm trying to copy productID, quantity, retail, item_total from cart to transactionDetail and assign a transactionID that that is stored in a browser cookie. It looked like 'INSERT INTO...SELECT' would do the trick but only the first record of the first query works. Subsequent attempts to INSERT fail with a duplicate record message. Here's my SQL:

insert into transactionDetail (productID,quantity,retail,item_total)
select productID,quantity,retail,item_total from cart
where sessionID='9279001a46894f1d3220d87e40fd4f5d';

Getting the transactionID from the cookie to each record is another matter. It exists in a third table so I guess I could match it someway on the SQL server then insert it into the transactionDetail table (just fishing...). I'm programming in Perl, if anyone could offer a suggestion, it'd certainly be appreciated.

Thanks for any and all help you can provide.

Cheers,

Jeff

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMySQL Help > INSERT INTO...SELECT...

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap