Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: Gregory Ewing Newsgroups: comp.lang.python Subject: Re: How to add a current string into an already existing list Date: Sun, 03 Nov 2013 19:06:40 +1300 Lines: 17 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: individual.net 3ZqKLqtzFWcr8QMdJGYYigkwYsUQPtzG8dCew5pC+1hrN6sUWm Cancel-Lock: sha1:dRzXLrIlgwZaLDngLSPOMoBcCJE= User-Agent: Mozilla Thunderbird 1.0.5 (Macintosh/20050711) X-Accept-Language: en-us, en In-Reply-To: Xref: csiph.com comp.lang.python:58369 Nick the Gr33k wrote: > I just want a mysql column type that can be eligible to store an array > of elements, a list that is, no need for having a seperate extra table > for that if we can have a column that can store a list of values. Relational database systems typically don't provide any such type, because it's not the recommended way of storing that kind of data in a relational database. The recommended way is to use a secondary table, as has been pointed out. You're making things difficult for yourself by refusing to consider that solution. -- Greg