Lets say we have this MySQL table

name       value
author     Sabriel Armstrong
author     Peter Abhorsen
author     Garth Stein
item       bell
item       book
item       sword
item       wand

Given these database entries, is there a way to retrieve this values as to get it in the format below? Or is my database modeling wrong?

array(
   [author] => array(Sabriel Armstrong,Peter Abhorsen, Garth Stein),
   [item] => array(bell,book,sword, wand)
)
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

MySQL does not have arrays so it's hard to figure out what exact result set you are expecting. In any case, your DB design provides no way to match an author with an item: such information is simply not stored anywhere.

I suppose you'll have a reason to avoid this:

author            item
======            ======
Sabriel Armstrong bell
Peter Abhorsen    book

:-?

link|improve this answer
The reason I can't just make it a column is that the fields "name" and "value" are arbitrary and can change. – arvinsim Jan 29 '11 at 4:44
feedback

Your Answer

 
or
required, but never shown

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