Oracle: How to call a function from the SQL*Plus command line

If you would like to verify the result of a function call in Oracle SQL*Plus you could simply include it in a SQL select statement like this:

create or replace function testfunction(testparm IN number)
return number is
begin
return(testparm);
end testfunction;

SQL> select testfunction(123) from dual;
 
TESTFUNCTION(123)
-----------------
              123
 
SQL> 

Über Stefan

Polyglot Clean Code Developer

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert