Oracle存储过程入门基础

1、创建一个简单的存储过程:

create or replace procedure first_proc

is 

begin

       dbms_output.put_line('我是过程');

       dbms_output.put_line('Hello Everyone!');

end;

存储过程调用方式:

begin

      first_proc;

end;

2、创建一个简单的函数:

create or replace function first_func

return varchar2

is

begin

        dbms_output.put_line('我是函数');

        return 'Hello everyone';

end;

函数的调用方式:

begin

       dbms_output.put_line(first_func);

end;

 

你可能感兴趣的:(oracle)