Oracle 動態SQL返回單條結果和結果集

來源:互聯網
上載者:User
Oracle 動態SQL有兩種寫法:用 DBMS_SQL 或 execute immediate,建議使用後者。實驗步驟如下:

1. DDL 和 DML

/*** DDL ***/
begin 
    EXECUTE IMMEDIATE 'drop table temp_1'; 
    EXECUTE IMMEDIATE 'create table temp_1(name varchar2(8))'; 
end; 

/*** DML ***/
declare 
    v_1 varchar2(8); 
    v_2 varchar2(10); 
    str varchar2(50); 
begin 
    v_1:='測試人員'; 
    v_2:='北京'; 
    str := 'INSERT INTO test (name ,address) VALUES (:1, :2)'; 
    EXECUTE IMMEDIATE str USING v_1, v_2; 
    commit; 
end; 

2. 返回單條結果

declare 
    str varchar2(500); 
    c_1 varchar2(10); 
    r_1 test%rowtype; 
begin 
    c_1:='測試人員'; 
    str:='select * from test where name=:c WHERE ROWNUM=1'; 
    execute immediate str into r_1 using c_1; 
    DBMS_OUTPUT.PUT_LINE(R_1.NAME||R_1.ADDRESS); 
end ; 

3. 返回結果集

CREATE OR REPLACE package pkg_test as 
    /* 定義ref cursor類型 
    不加return類型,為弱類型,允許動態sql查詢, 
    否則為強型別,無法使用動態sql查詢; 
    */ 
    type myrctype is ref cursor; 

    --函數申明 
    function get(intID number) return myrctype; 
end pkg_test; 

CREATE OR REPLACE package body pkg_test as 
--函數體 
    function get(intID number) return myrctype is 
        rc myrctype; --定義ref cursor變數 
        sqlstr varchar2(500); 
    begin 
        if intID=0 then 
            --靜態測試,直接用select語句直接返回結果 
            open rc for select id,name,sex,address,postcode,birthday from student; 
        else 
            --動態sql賦值,用:w_id來申明該變數從外部獲得 
            sqlstr := 'select id,name,sex,address,postcode,birthday from student where id=:w_id'; 
            --動態測試,用sqlstr字串返回結果,用using關鍵詞傳遞參數 
            open rc for sqlstr using intid; 
        end if; 

        return rc; 
    end get; 

end pkg_test; 
/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.