How to add all sym into one list?

https://learninghub.kx.com/forums/topic/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 t`sym would do nicely.

Watch Out: scan is a q keyword and you cant assign it a value.