I have one problem need to solve in oracle :
i/p :
O
R
A
C
L
E
O/P :
ORACLE
I have one problem need to solve in oracle :
i/p :
O
R
A
C
L
E
O/P :
ORACLE
Assuming this is a column in a table, here's an example using listagg() that may work for you
select
listagg(your_column) within group (order by rn) new_column
from (select rownum rn, your_column from your_table)
;
Demo here