问答详情
源自:2-3 [Oracle] 如何调试存储过程

Warning: Procedure created with compilation errors.

写helloworld的时候就报这个错误 

  1  create or replace procedure sayhelloworld

  2  begin

  3  dbms_output_line("Hello World");

  4  end;

  5  /


提问者:qq_Sebtimental丶_23564747 2018-07-04 13:17

个回答

  • qq_等下一个雨天_0
    2018-07-04 21:37:25
    已采纳

      create or replace procedure sayhelloworld

    AS

      begin

     dbms_output_line("Hello World");

     end;

     /


  • Toney_Lee
    2018-08-27 11:31:39

    begin上面加上一行AS就好了

  • qq_等下一个雨天_0
    2018-07-04 21:36:44

    begin上面加上一行AS就好了