任何线索如何在 SQLFiddle 中获取 PL/SQL?
我试过了
begin
dbms_output.put_line('Hello World');
end;
/
或者
begin
null;
end;
/
它适用于 SQL*Plus(或 TOAD 或 SQLDeveloper 或 ...),但 SQLFiddle 只给了我
ORA-06550: line 2, column 36: PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following: := . ( % ; : begin dbms_output.put_line('Hello World')
所以似乎有某种 PL/SQL 引擎到位,但我不知道如何让它解析匿名程序单元。