I have select statement like this.
select 'A','B','C' from dual;
It display
'A' 'B' 'C'
A B C
I want it show like this
'A'
A
B
C
Please help me.
I have select statement like this.
select 'A','B','C' from dual;
It display
'A' 'B' 'C'
A B C
I want it show like this
'A'
A
B
C
Please help me.
Copyright © 2021 Jogjafile Inc.
Simply concatenate it with
CHR(10)
i.e. a line feed.For example,
Or, you could use UNION ALL.