こんにちは、私は pl/sql ブロックの実行時にユーザーから入力を取得する必要があります。私はこれを試しました:
Accept x number prompt 'enter variable'
set serveroutput on
declare
begin
dbms_output.putline('ut entered value id'||x);
end;
/
しかし、次のようなエラーが発生しました:
コマンドの 3 行目から始まるエラー:
declare
begin
dbms_output.putline('ut entered value id'||x);
end;
Error report:
ORA-06550: line 7, column 44:
PLS-00201: identifier 'X' must be declared
ORA-06550: line 7, column 1:
PL/SQL: Statement ignored
06550. 00000 - "line %s, column %s:\n%s"
*Cause: Usually a PL/SQL compilation error.
*Action:
誰でも私を助けることができます!