找关于pl/sql开发的,很多的
http://www.vvsoft.net/vvbksd/index.asp

解决方案 »

  1.   

    这里也有不少:
       http://www.oradb.net/book.htm
      

  2.   

    中文滴,带实例的有不有啊?我看到一个select * into QQQQ from table_testinto QQQQ这个是什么sql语法?晕
      

  3.   

    PL_SQL用户指南与参考
    PL_SQL高级开发
      

  4.   

    英文的,推荐看英文,中文的少,
    into 变量, PL/SQL中用的,看上面发的两篇文档.
      

  5.   

    用游标.cursor c is select a.user_name from user a where .....;
      

  6.   

    包头
    create or replace package pkg_test
    as
      type myCursor is ref cursor;
      function get(p_id number) return myCursor;
    end pkg_test;
    包体
    create or replace package body pkg_test 
    as
    --*************************************************
      --输入ID 返回记录集的函数
      function get(p_id number) return myCursor is
         rc myCursor;
         strsql varchar2(200);
      begin
         if p_id=0 then 
            open rc for select a.user_name from fnd_user a ;  
         else
            strsql:='select a.user_name from fnd_user a where a.user_id=:p_id';
            open rc for strsql using p_id;
         end if;
         return rc;  
         end get; 
    end pkg_test;
    调用
    set serverout on 
    declare 
      w_rc pkg_test.myCursor;
      w_name varchar2(100);
    begin
      w_rc:=pkg_test.get(10);
      loop
      fetch w_rc into w_name;
            exit when w_rc%notfound;
      dbms_output.put_line(w_name);
      end loop;
    end;
    /
      

  7.   

    买本<<Oracle完全参考手册>>吧
      

  8.   

    公司有,借出去了.倒.算了,我用java来开发存储过程,只是不晓得和plsql比,性能上会差多少?:)
      

  9.   

    ORACLE的存储过程在它的官方网站上就有参考的资料呀