來命名該塊在Oracle PL/SQL中,爲什麼我無法使用相關的sympols命名該塊? 上午使用PL/SQL Developer.Thanks。在Oracle PL/SQL中,爲什麼我無法使用<<>>
整個代碼:我試着在下面的代碼中鍵入下面的代碼,但在x數字之後:= 10異常出現,我無法進一步輸入。
<<outer_block>>
declare
x number := 10;
begin
dbms_output.put_line('x is ' || x);
end;
代碼:
SQL> <<block1>>
2 declare
3 x number := 10;
異常跟蹤:
<<block1>>
declare
x number := 10
ORA-06550: line 5, column 0:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
* & = - + ; </> at in is mod remainder not rem
<an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
LIKE4_ LIKEC_ between || multiset member SUBMULTISET_
錯誤,所以它應該是別的東西。你能分享一些更多的代碼片段嗎? –
請檢查更新Question.Thanks for reply。 – sunleo
你需要有一個BEGIN和END ..就像[here](http://en.m.wikipedia.org/wiki/PL/SQL#PL.2FSQL_Anonymous_Block) –