Let's say I have a table T
- its every row has a key (assume TID
column). Now I have a second table A
where for each row I'd like to have a list of values from TID
. How could I achive this?
I thought about creating VARRAY
of values from T
and putting it in A
but I somehow feel it's not a right way to go...