Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would really appreciate your help on this:

Item_ID Buy_User    Buy_Date    Buy_Qty 
00001       Adam        01/02/2013  1
00003       John        01/01/2013  2
00004       Peter       02/01/2013  1
00001       Nial        01/01/2013  1

Above is an example of my table. What I need is to sql query the Item_ID column, and display each Item_ID only once - but display each of the user's who have bought that product.

I need the query to be outputted in HTML/css.

For example my html page may look like:

Item 1: Adam bought 1. Nial bought 1.

Item 2: (would be hidden as no purchases).

Item 3: John bought 2.

Item 4: Peter bought 1.

I'm not quite sure how to achieve this, I've been googling around and found multiple mentions of sub selects, but i'm not sure how i'd get it to display each row?

Help?!

Many thanks.

share|improve this question
1  
What have you tried? See ask advice, please. – John Conde Feb 19 at 14:36
Wouldn't it be "John bought 2" for Item 3? – Nitram Feb 19 at 14:37
Sorry, you're right Nitram - it should be "John bought 2". My miss-type there. – Frail Monkey Feb 19 at 14:47

1 Answer

Is this what you're looking for? It uses GROUP_CONCAT to group the rows and CONCAT to build the strings:

SELECT Item_Id, GROUP_CONCAT(CONCAT(Buy_User,' bought ',Buy_Qty) SEPARATOR ', ') ITEMS
FROM Items
GROUP BY Item_Id

Here is the SQL Fiddle.

And here are the results:

ITEM_ID   ITEMS
00001     Adam bought 1, Nial bought 1
00003     John bought 2
00004     Peter bought 1
share|improve this answer
That is brilliant! How would I then get each row to output within the HTML table, but stay under it's respective header? – Frail Monkey Feb 19 at 14:46
1  
@FrailMonkey -- not sure I can help with that -- not a big php user :) Should be lots of tutorials out there on php and mysql with prepared statements and mysqli (php.net/manual/en/mysqli.quickstart.prepared-statements.php). Best of luck! – sgeddes Feb 19 at 14:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.