How to add all sym into one list?

Hi, Masters:

  I have a table with sym field, for example:

q)show t:(sym:(1+5?5)?:5?`3)
sym

,ceo edcedcedcapa mlfceoijl
apaapamlf ,mlf

 

How to add each sym and make it be a list, such as: ceoedcedcedcapamlfceoijlapaapamlfmlf ?

Thanks

scan: (,)t[`sym]

over: (,/)t[`sym]

thinking in Q.

Join Over ,/ is of course raze, so raze tsym` would do nicely.

Watch Out : scan is a q keyword and you can’t assign it a value.

Thanks. Yes, I just mentioned 2 methods(scan and over).