Querying a column that holds a table

Hi,Is there an easy way to query a table (say tbl) having a column (saycol) that holds (on each row) a (mini-)table?The aim is to have the (mini-)tables concatenated as a result of thequery.A bonus feature wold be to have an extra column (sau colex) from tblincluded…Many thanks,Catalin

A quick go at it:

foo:(3?ab`c);
tbl:(col:(foo;foo;foo);b:1 2 3);

Maybe one of these:

exec raze col from tbl
select value flip raze col,enlist b from tbl

?