ユーザー入力を読み取り、後で使用するために変数に格納するには、SQL*PlusコマンドのACCEPT
を使用できます。 。
Accept <your variable> <variable type if needed [number|char|date]> prompt 'message'
例
accept x number prompt 'Please enter something: '
そして、x
を使用できます PL/SQLブロックの変数は次のとおりです。
declare
a number;
begin
a := &x;
end;
/
文字列の例での作業:
accept x char prompt 'Please enter something: '
declare
a varchar2(10);
begin
a := '&x'; -- for a substitution variable of char data type
end; -- to be treated as a character string it needs
/ -- to be enclosed with single quotation marks