问答详情
源自:2-1 PL/SQL基本变量类型

显示不了字符串的输出结果

为什么我不到字符串的输出结果呢?要怎么弄?

提问者:慕的地5766610 2016-12-24 18:37

个回答

  • 晨习
    2016-12-27 19:32:41

    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;