Aby odczytać dane wprowadzone przez użytkownika i zapisać je w zmiennej do późniejszego wykorzystania, możesz użyć polecenia SQL*Plus ACCEPT
.
Accept <your variable> <variable type if needed [number|char|date]> prompt 'message'
przykład
accept x number prompt 'Please enter something: '
A potem możesz użyć x
zmienna w bloku PL/SQL w następujący sposób:
declare
a number;
begin
a := &x;
end;
/
Praca z przykładem ciągu:
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