dlebowski Posted September 9, 2007 Share Posted September 9, 2007 I need a query that will take what each seller sold times the quantity and get a grand total for multiple lots sold. I'm not sure how to go about achieving this. Here is what I have: FIELDS: Lot Price Quantity Seller 1 3 1 36 2 4 2 36 3 20 1 8 4 13 3 8 5 12 1 87 I need to have each seller get a grand total of what they sold. So the end result would be: Seller Total 36 11 ((3*1)+(4*2)) 8 59 ((20*1)+(13*3)) 87 12 (12*1) Link to comment https://forums.phpfreaks.com/topic/68555-solved-need-assistance-with-a-query/ Share on other sites More sharing options...
watthehell Posted September 9, 2007 Share Posted September 9, 2007 SELECT Seller, sum( Price * Quantity ) FROM `Table_Name` GROUP BY Seller; check this Link to comment https://forums.phpfreaks.com/topic/68555-solved-need-assistance-with-a-query/#findComment-344629 Share on other sites More sharing options...
dlebowski Posted September 9, 2007 Author Share Posted September 9, 2007 I got it. Here is what I did: SELECT sum(SellingPrice * LotQuantity) FROM lots WHERE Date='$Date' AND SellerNumber='$Seller' Link to comment https://forums.phpfreaks.com/topic/68555-solved-need-assistance-with-a-query/#findComment-344630 Share on other sites More sharing options...
dlebowski Posted September 9, 2007 Author Share Posted September 9, 2007 Thanks for helping out man. Link to comment https://forums.phpfreaks.com/topic/68555-solved-need-assistance-with-a-query/#findComment-344631 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.