游標使用具體案例

2021-10-12 16:23:05 字數 847 閱讀 5221

drop procedure if exists workingday_insert ;

#建立儲存過程

create procedure workingday_insert() 

begin 

declare num int default(0);

declare centguid_sp varchar(100);

#申明游標,類似集合(查詢結果放在游標中)

declare centguid_list cursor for

select

rowguid

from

audit_orga_servicecenter;

#設定遍歷結束的標誌

declare continue handler for not found set

num = 1;

#開啟集合

open centguid_list;

#遍歷集合

fetch centguid_list into centguid_sp;

while num <> 1 do

#業務邏輯

#insert into audit_orga_workingday (rowguid,isworkingday,centerguid,isweekend,wdate,dateguid) values  (newid(),1,centguid_sp,0,'2021-12-31',newid())

#記錄遍歷過的資料,否則會死迴圈

fetch centguid_list into centguid_sp;

end while;

close centguid_list;

end;

checkStyle使用具體解釋

checkstyle是一款 格式檢查工具。它依據設定好的編碼規則來自己主動檢查 比方命名規範,檔案長度。行長度等等。檢查工具是保證專案 質量 統一編碼風格的一種重要途徑。本篇部落格主要講講使用checkstyle的檢查規則的陪置。eclipse中,選擇help software updates fi...

opencv 函式使用具體細節記錄

1。高斯模糊 gaussianblur inputarray src,outputarray dst,size ksize,double sigmax,double sigmay 0,int bordertype border default 作用 可以去除部分雜訊點 使用 size ksize 為...

Excel中vlookup怎麼使用,具體是做

在 或數值陣列的首列查詢指定的數值,並由此返回 或陣列當前行中指定列處的數值。當比較值位於資料表首列時,可以使用函式 vlookup 代替函式 hlookup。如果函式 vlookup 找不到 lookup value,且 range lookup 為 true,則使用小於等於 lookup val...