ऐसा करने के लिए यहां एक SQL प्लस स्क्रिप्ट है:
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 केस एक्सप्रेशन के ELSE भाग में 'मेनू' इस स्क्रिप्ट का नाम है, ताकि जब उपयोगकर्ता किसी अमान्य विकल्प में प्रवेश करता है तो यह फिर से चलता है।