Re: concat multirow subselect

2005-04-22 Thread Stano Paska
Michael Stassen wrote: Stano Paska wrote: Hi, it is possible to ? I have two tables. create table aaa (id int auto_increment not null, title varchar(255), primary key (id)); create table bbb (id int auto_increment not null, fk_aaa int not null, detail varchar(255), primary key (id)); insert into

Re: concat multirow subselect

2005-04-22 Thread Michael Stassen
Stano Paska wrote: Hi, it is possible to ? I have two tables. create table aaa (id int auto_increment not null, title varchar(255), primary key (id)); create table bbb (id int auto_increment not null, fk_aaa int not null, detail varchar(255), primary key (id)); insert into aaa values (1, 'aaa'),

concat multirow subselect

2005-04-22 Thread Stano Paska
Hi, it is possible to ? I have two tables. create table aaa (id int auto_increment not null, title varchar(255), primary key (id)); create table bbb (id int auto_increment not null, fk_aaa int not null, detail varchar(255), primary key (id)); insert into aaa values (1, 'aaa'), (2, 'bbb'); insert