Pour lire l'entrée utilisateur et la stocker dans une variable, pour une utilisation ultérieure, vous pouvez utiliser la commande SQL*Plus ACCEPT
.
Accept <your variable> <variable type if needed [number|char|date]> prompt 'message'
exemple
accept x number prompt 'Please enter something: '
Et puis vous pouvez utiliser le x
variable dans un bloc PL/SQL comme suit :
declare
a number;
begin
a := &x;
end;
/
Travailler avec un exemple de chaîne :
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