If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Baffled by reasonably Simple Update

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-02-07, 19:45
mvreade mvreade is offline
Registered User
 
Join Date: Sep 2006
Posts: 25
Baffled by reasonably Simple Update

I have created a simple database with a 'products', 'invoices', and 'items'. The updates I'm trying to run are:

1) to update the invoices.total according to the sum of the items.lineTotal related to that invoice; and

2) to update the products.qtySold according to sum of the items.qty for that productID.

I have included the SQL_Dump.

If anyone can shed any light on this, I'd be most thankful.

All the best,

mvreade
Attached Files
File Type: zip test_SQLDump.sql.zip (879 Bytes, 61 views)
Reply With Quote
  #2 (permalink)  
Old 10-03-07, 02:03
swapnilclarion swapnilclarion is offline
Registered User
 
Join Date: May 2007
Posts: 8
Hi,

1) to update the invoices.total according to the sum of the items.lineTotal related to that invoice;

Update invoices set total=(select SUM(lineCost) from items where
invoices.invoiceID=items.invoiceID)


2) to update the products.qtySold according to sum of the items.qty for that productID.

Update products set qtySold=(select SUM(qty) from items where
products.productID=items.productID)


Above queries may solve your problem.

Thanks,
Reply With Quote
  #3 (permalink)  
Old 10-03-07, 06:53
mvreade mvreade is offline
Registered User
 
Join Date: Sep 2006
Posts: 25
Beautiful, thanks.

All the best,

mvreade
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On