存储过程

1.第一个存储过程,打印hello word
/*
调用存储过程

  1. exec sayhello();
  2. begin
    sayhello();
    end;
    /
    */
    create or replace procedure sayhello(自己定义的名字)
    as
    --说明部分
    begin
    dbms_output.put_line("hello word");
    end;
    /

你可能感兴趣的:(存储过程)