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

来源:2-1 PL/SQL基本变量类型

慕的地5766610

2016-12-24 18:37

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

写回答 关注

1回答

  • 晨习
    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;


Oracle数据库开发必备利器之PL/SQL基础

Oracle数据库高级开发必备的基础,通过实例带你熟练掌握

75048 学习 · 208 问题

查看课程

相似问题