Is possible function return values use OUT mode?
Give some coding pls..
Hastha23.
Hi,
Functions can return only one value, which is returned to the calling body by using the RETURN statement. The data type of the value being returned needs to be specified.
Hi Arun,
Are you getting any error?
If you are getting error as 'table does not exist' then give
insert into <schemaname>.x values('java',3 22);
instead of
insert into x values('java',3 22);
The rest is correct, the function should compile.
Comment