Oracle PLSQL Demo - 27.Declare & Run Sample

declare
    v_sal number(5) := 6000;
begin
    --if you could not see the output in console, you should set output on first use the command in command line : set serveroutput on
    dbms_output.put_line(v_sal);
end;

 

posted @ 2015-06-29 23:09  nick_huang  阅读(198)  评论(0)    收藏  举报