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

Come creare un menu in SQLPlus o PL/SQL

Ecco uno script SQL Plus per farlo:

prompt Please make a selection:
prompt 1: Do script a
prompt 2: Do script b
prompt 3: Do script c

accept selection prompt "Enter option 1-3: "

set term off

column script new_value v_script

select case '&selection.'
       when '1' then 'script_a'
       when '2' then 'script_b'
       when '3' then 'script_c'
       else 'menu'
       end as script
from dual;

set term on

@&v_script.

NB Il 'menu' nella parte ELSE dell'espressione case è il nome di questo script, in modo che venga eseguito nuovamente quando l'utente inserisce un'opzione non valida.