Oracle
 sql >> Database >  >> RDS >> Oracle

Come ottenere input dall'utente in fase di esecuzione

Per leggere l'input dell'utente e memorizzarlo in una variabile, per un uso successivo, è possibile utilizzare il comando SQL*Plus ACCEPT .

Accept <your variable> <variable type if needed [number|char|date]> prompt 'message'

esempio

accept x number prompt 'Please enter something: '

E poi puoi usare il x variabile in un blocco PL/SQL come segue:

declare 
  a number;
begin
  a := &x;
end;
/

Esempio di utilizzo di una stringa:

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