Eriovaldo,
If you don't want to have to mess around with your SQL adding chr(10), and
since you said in SQL*Plus, you could use column commands:
SQL> column dname newline
SQL> column loc newline
1* select * from dept
SQL> /
10
ACCOUNTING
NEW YORK
20
RESEARCH
DALLAS
You can also look into using fold_after or fold_before with the col(umn)
command.
Not that I think the column commands approach is any better or worse, and,
it *is* less typing to do the char(10) approach -- just wanted to bring up
another approach that hadn't been mentioned.
Regards,
Larry G. Elkins
[EMAIL PROTECTED]
-----Original Message-----
Carmo Andrietta
Sent: Wednesday, March 21, 2001 12:03 PM
To: Multiple recipients of list ORACLE-L
Hi Friends :
How can I do for put each column in new line using sql/plus
Example :
Select * from tab;
and the result sould be :
'value of column1'
'value of column2'
'value of column3'
'value of column4'
'value of column5'
and not
'value of column1' 'value of column2' 'value of column3' 'value of column4'
'value of column5'
Thanks
Eriovaldo
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
INET: [EMAIL PROTECTED]
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
San Diego, California -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).