存储过程

2018-11-08  本文已影响0人  xhlc02

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

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

猜你喜欢

热点阅读