Hãy thử điều này:
select listagg(A,' ') within group (order by A) as Names
from test
Trong trường hợp của bạn, truy vấn giống như sau:
select listagg(column_name,' ') within group (order by column_name) as column_name
from all_tab_cols
where table_name='TABLE_NAME' ;