Jump to content

GROUP BY, JOIN, GROUP_CONCAT....???? Grrrrr...


dtyson2000

Recommended Posts

Hi mysql guys (or gals, as the case may be). Sorry to bug you with something that is probably pretty simple but...

 

I have a table for purchases (orders) that includes a column for productID and quantity. When a customer places an order that has more than one product, the order is split into two rows accounting for the productID and a quantity with each row containing the same orderID.

 

table: orders

orderID || productID || quantity
10026 || 2 || 10
10026 || 9 || 1

 

I want to produce a query that combines the orderID and the productID and quantity into one row.

 

SELECT orderID, productID, quantity FROM orders GROUP BY orderID;

This results in:

orderID || productID || quantity
10026 || 9 || 1

 

How can I produce the following result:

 

orderID || quantityPID2 || quantityPID9
10026 || 10 || 1

 

I have a basic understanding of MySQL and can certainly implement solutions as I find them in the manual but I just don't know where to start. I've thought about JOIN, SUM, GROUP_CONCAT, etc, etc... But I just can't come up with a solution.

 

Any thoughts?

 

Thanks, in advance!

Link to comment
Share on other sites

Ok that's interesting; it looks like you're trying to create a pivot table BUT with an unknown number of potential columns (i.e. quantityPID2, quantityPID9.

 

My question to you is WHY do you require this? What's wrong with just 2 rows for the orderID 10026? What is it you plan on doing with this information?

Link to comment
Share on other sites

Ok that's interesting; it looks like you're trying to create a pivot table BUT with an unknown number of potential columns (i.e. quantityPID2, quantityPID9.

 

My question to you is WHY do you require this? What's wrong with just 2 rows for the orderID 10026? What is it you plan on doing with this information?

 

It's to simplify an accounting procedure. We're using zen cart software and several months ago, we did the multiple row thing with the query I wrote. It wasn't a HUGE deal to do it that way. I just thought I would simplify the output. The data is subsequently put into Excel and, with multiple rows, requires quite a bit of editing (which, again, isn't a huge deal).

 

There is actually a finite number of products - I believe there are only 9. So there would really only be a potential of nine columns.

 

A "pivot table" you say? Hmm... I'll see what I can find about these... Thanks!

Link to comment
Share on other sites

If there are only 9 products then we can probably break it down into 9 columns and use a pivot table to give you your layout.

 

par example:

SELECT orderID
      ,SUM(quantity*(1-abs(sign(productID-1)))) as productPID1
      ,SUM(quantity*(1-abs(sign(productID-2)))) as productPID2
      ,SUM(quantity*(1-abs(sign(productID-3)))) as productPID3
      ,SUM(quantity*(1-abs(sign(productID-4)))) as productPID4
      ,SUM(quantity*(1-abs(sign(productID-5)))) as productPID5
      ,SUM(quantity*(1-abs(sign(productID-6)))) as productPID6
      ,SUM(quantity*(1-abs(sign(productID-7)))) as productPID7
      ,SUM(quantity*(1-abs(sign(productID-))) as productPID8
      ,SUM(quantity*(1-abs(sign(productID-9)))) as productPID9
FROM orders
GROUP BY orderID;

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.