using "SQLPlus Worksheet", sql query console provided by
Oracle .. or "sql plus" , and not some fancy shmancy TOAD or SQL navigator I would like to do this :
--run this pl/sql block
declare
someText VARCHAR(100);
begin
someText:='some trivial message for the masses';
select someText as Message from dual;
end;
--and get something like
Message
-------
some trivial message for the masses
the example doesn't work, it sugest to use INTO clause
in the select ..
I would like then in conclusion , to be able to return
non-numeric output from inside a pl/sql block ..
anyone has some ideea ?
thank you
Oracle .. or "sql plus" , and not some fancy shmancy TOAD or SQL navigator I would like to do this :
--run this pl/sql block
declare
someText VARCHAR(100);
begin
someText:='some trivial message for the masses';
select someText as Message from dual;
end;
--and get something like
Message
-------
some trivial message for the masses
the example doesn't work, it sugest to use INTO clause
in the select ..
I would like then in conclusion , to be able to return
non-numeric output from inside a pl/sql block ..
anyone has some ideea ?
thank you