我的運(yùn)行出錯(cuò)幫忙檢查下
create or replace procedure sayhelloworld
as
begin
? ?dbms_output.put_line("HelloWorld");
end ;
/
錯(cuò)誤:Warning: Procedure created with compilation errors
create or replace procedure sayhelloworld
as
begin
? ?dbms_output.put_line("HelloWorld");
end ;
/
錯(cuò)誤:Warning: Procedure created with compilation errors
2016-08-26
舉報(bào)
2016-08-26
dbms_output.put_line("HelloWorld");中不是雙引號~mysql可以用雙引號,但是oracle不可以用雙引號~這就是oracle和Mysql的區(qū)別之一。