为什么我不到字符串的输出结果呢?要怎么弄?
set serveroutput on 打开输出开关;
accept num prompt '请输入一个数字';
-- 上面是sql developer中的用法
declare
score number := #
begin
if score=1 then dbms_output.put_line('你输入的数字是1;');
elsif score=2 then dbms_output.put_line('你输入的数字是2');
else dbms_output.put_line('你输入的数字是0');
end if;
end;