За да прочетете въведеното от потребителя и да го съхраните в променлива, за по-късна употреба, можете да използвате командата 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