在開發(fā)過程中可能會聲明一個含有某張表不具備字段的游標(biāo),來解決特殊問題,本文將詳細(xì)介紹這類問題,需要了解更多的朋友可以參考下
其中,data.*是一張表,然后把其他表中的字段也加到sal_data的游標(biāo)中
Sql代碼
復(fù)制代碼 代碼如下:
cursor sal_data(cp_center_temp_id varchar2) is
select data.*,
post.id emp_post_id,
doc.Salary_Tax_Bd sa_tax_bd,
batch.bill_year_month bill_year_month,
batch.id batch_id,
post.emp_id employee_id
from sa_salary_data data
left join sa_salary_batch batch
on data.sa_batch_id = batch.id
left join sa_salary_document doc
on data.sa_doc_id = doc.id
left join pb_emp_post post
on doc.emp_post_id = post.id
left join pb_send send
on post.send_id = send.id
where send.cost_center_id = cp_center_temp_id;
使用此游標(biāo):
聲明一個此游標(biāo)類型的變量:
Sql代碼
復(fù)制代碼 代碼如下:
salary_data_temp sal_data%rowtype;
然后編譯此游標(biāo)
Sql代碼
復(fù)制代碼 代碼如下:
open sal_data(center_temp.id);
loop
fetch sal_data
into salary_data_temp;
exit when sal_data%notfound;
--TODO
end loop;
colse sal_data;
您可能感興趣的文章:- Oracle 游標(biāo)使用總結(jié)
- Oracle顯示游標(biāo)的使用及游標(biāo)for循環(huán)
- Oracle存儲過程返回游標(biāo)實例詳解
- oracle 在一個存儲過程中調(diào)用另一個返回游標(biāo)的存儲過程
- Oracle中游標(biāo)Cursor基本用法詳解
- 在Oracle PL/SQL中游標(biāo)聲明中表名動態(tài)變化的方法
- Oracle存儲過程游標(biāo)用法分析
- Oracle出現(xiàn)超出打開游標(biāo)最大數(shù)的解決方法
- 詳解Oracle隱式游標(biāo)和顯式游標(biāo)
- Oracle游標(biāo)的使用實例詳解