Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Newbie Question: Modify Select Output
In article <89e90r$55l$1_at_weber.a2000.nl>, johan_park_at_hotmail.com says...
> Is it possible to modify the select output.
> I would like to get something like:
>
> Number: 1
> Name: John
> Lastname: Johnson
> Place: Texas
>
Hey;
select 'Number: '||num||'
Name: '||name||' Lastname: '|| lname || ' Place: '|| place
set heading on
There should be a way using escaped newline characters, but the above works...
Doug
--
![]() |
![]() |