Re: Horizontal list...

2004-03-17 Thread Victoria Reznichenko
Richard Carlier <[EMAIL PROTECTED]> wrote: > Bonjour, > > "Horizontal" is not the word but I don't know how to explain... and by > extension how to find in archive of list... > > Maybe an example ? > > I have this > +---+---+ > | a | b | > +---+---+ > |

Re: Horizontal list...

2004-03-17 Thread Stefan Kuhn
Bonjour, you simply cannot do this. In SQL, every column has one value, everything else is not normalized, and normalization is required in relational dbms. If you want to have such a list, you would need to do it in you application, given it's a (PHP,Java etc) application accessing the database

Horizontal list...

2004-03-17 Thread Richard Carlier
Bonjour, "Horizontal" is not the word but I don't know how to explain... and by extension how to find in archive of list... Maybe an example ? I have this +---+---+ | a | b | +---+---+ | 1 | 1 | | 1 | 2 | | 1 | 3 |