小编rag*_*nse的帖子

PLS-00103:在简单更新块中遇到符号"文件结束"

以下Oracle语句:

 DECLARE ID NUMBER;
 BEGIN
  UPDATE myusername.terrainMap 
  SET playerID = :playerID,tileLayout = :tileLayout 
  WHERE ID = :ID
 END;
Run Code Online (Sandbox Code Playgroud)

给我以下错误:

ORA-06550: line 6, column 15:
PL/SQL: ORA-00933: SQL command not properly ended
ORA-06550: line 3, column 19:
PL/SQL: SQL Statement ignored
ORA-06550: line 6, column 18:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:

   ( begin case declare end exception exit for goto if loop mod
   null pragma raise return select update while with
   <an identifier> <a double-quoted> …
Run Code Online (Sandbox Code Playgroud)

sql oracle plsql ora-00933 ora-06550

5
推荐指数
1
解决办法
5万
查看次数

标签 统计

ora-00933 ×1

ora-06550 ×1

oracle ×1

plsql ×1

sql ×1