Functions error compilation
hello,
i typed the following code
SQL> create or replace function first_function return varchar2 as
2 begin
3 return 'Hello World';
4 end first function;
5 /
but it always gives me the following error
(Warning: Function created with compilation errors.)
so where is the problem and how can i fix it?
|