Chcete-li přečíst uživatelský vstup a uložit jej do proměnné pro pozdější použití, můžete použít příkaz SQL*Plus ACCEPT
.
Accept <your variable> <variable type if needed [number|char|date]> prompt 'message'
příklad
accept x number prompt 'Please enter something: '
A pak můžete použít x
proměnná v bloku PL/SQL takto:
declare
a number;
begin
a := &x;
end;
/
Práce s příkladem řetězce:
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