在Oracle PL/SQL中遊標聲明中表名動態變化的方法

來源:互聯網
上載者:User

/*
小弟剛剛接觸ORACLE預存程序,有一個問題向各位同行求教,小弟寫了一個預存程序,其目的是接收一個參數作為表名,然後查詢該表中的全部記錄的某一個欄位的內容匯入到另一個表中。
(
tabname in varchar
)
is
v_servicesname tabname.服務類型%type; --這個變數就是用來存放所要取得的欄位內容,但不知該如何定義
cursor curSort1 is select 服務類型 from tabname order by 編碼; --此語句也不對提示找不到表名

begin
.....
end getservicesname1;
An example:

create or replace procedure cal(tb varchar2) is
id pls_integer;
total pls_integer := 0;
type emp_cur is ref cursor;
cur emp_cur;
begin
open cur for 'select employee_id from ' || tb;
loop
fetch cur into id;
exit when cur%notfound;

total := total + id;
end loop;
close cur;

dbms_output.put_line(total)
end;*/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.