Warning: Procedure created with compilation errors.
寫helloworld的時候就報這個錯誤?
? 1 ?create or replace procedure sayhelloworld
? 2 ?begin
? 3 ?dbms_output_line("Hello World");
? 4 ?end;
? 5 ?/
寫helloworld的時候就報這個錯誤?
? 1 ?create or replace procedure sayhelloworld
? 2 ?begin
? 3 ?dbms_output_line("Hello World");
? 4 ?end;
? 5 ?/
舉報
2018-07-04
??create or replace procedure sayhelloworld
AS
? begin
?dbms_output_line("Hello World");
?end;
?/
2018-08-27
begin上面加上一行AS就好了
2018-07-04
begin上面加上一行AS就好了