i have an items Table and a Tags table. Now what i would like is to have one Select that gets Items under a certain condition and for each item selects the related tags and puts them in a string to become a seperate field.

Example:

table_items:
id   | title
---------------------------
01   | peter
---------------------------
02   | john
---------------------------
03   | cindy

tags:
id   | title
---------------------------
01   | tall
---------------------------
02   | tiny
---------------------------
03   | blone
---------------------------
04   | loud
---------------------------
05   | ...

tags_to_items:
itemid | tagid
---------------------------
01     | 02
---------------------------
01     | 04
---------------------------
02     | 01
...

I think you get the point.

Now i want a result like this:
itemid | title   | tags
---------------------------
01     | peter   | tiny, loud
---------------------------
01     | john    | tall, fast, bored

Can i do this with just MySQL? How?

link|improve this question

76% accept rate
1  
look on group_concat function, dev.mysql.com/doc/refman/5.0/en/… – Haim Evgi Jul 21 '11 at 11:58
feedback

1 Answer

up vote 2 down vote accepted

In MySQL, you need GROUP_CONCAT function to do that.

Something like:

select ti.id, ti.title, group_concat(t.title)
  from table_items ti
 inner join tag_to_items tti on (ti.id = tti.itemid)
 inner join tags t on (t.id = tti.tagid)
 group by ti.id, ti.title
link|improve this answer
Ahh, just found that myself, but thanks a lot! – Andresch Serj Jul 21 '11 at 12:07
feedback

Your Answer

 
or
required, but never shown

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