Re: Storing Arrays?

2001-09-03 Thread Rodney Broom
From: Philip Mak <[EMAIL PROTECTED]> > Is there a good way that I can store an array in a single row using MySQL? You can simply delimit the data some how. Perhaps with a pipe (|). > I was taught that under a clean relational database design, arrays should > be stored one element per row. Go

Storing Arrays?

2001-09-03 Thread Philip Mak
Is there a good way that I can store an array in a single row using MySQL? I was taught that under a clean relational database design, arrays should be stored one element per row. However, this makes retrieving the entire array less practical, especially when I have an array of arrays. I've thou