oracle 常用操作(存储过程,游标)

1.打印输出

exec dbms_output.put_line('hello');

---需要使用打开

SQL> set serverout on 
SQL> exec dbms_output.put_line('asda');

asda

2存储过程

//带游标
create or replace procedure SP_Test is tempresult varchar2(1024); cursor cursora is select * from tl_qxq; begin tempresult:='start->'; for cursor_result in cursora loop begin tempresult:=tempresult||cursor_result.id; end; end loop; end SP_Test;

  

3存储过程调试

 

posted @ 2013-01-14 20:08  咸鱼公子  Views(271)  Comments(0Edit  收藏  举报