함수명은 first_function으로 하고 리턴형은 varchar2로한다.

create or replace function first_function return varchar2 as
    begin
    return 'Hello World';
end first_function;
 /

 

 

str이라는 같은형에 변수를만들고

str에 함수를불러와서 텍스트를 넣는다.

 

declare
       str varchar(100) :=null;

 begin
 str := first_function;
 dbms_output.put_line(str);

end;
/

블로그 이미지

왕왕왕왕

,