sqlserver中觸發器+遊標操作實現

來源:互聯網
上載者:User

複製代碼 代碼如下:Create trigger tri_wk_CSVHead_History on wk_CSVHead_History
--聲明一個tri_wk_CSVHead_History觸發器,
instead of insert ---插入操作被代替執行下面的操作
as
begin
declare YB cursor --聲明一個遊標
for
 select NoteNO from inserted--這裡的NoteNO要和下面的匹配
 open YB
  declare @NoteNO varchar(50)--這裡的NoteNO要和上面的匹配,定義一個遊標變數@NoteNO,用來操作insered表中的NoteNo.
  fetch next from YB into @NoteNO--這裡的NoteNO要是上面的匹配,移動遊標
  while(@@fetch_status=0)--0操作成功,-1 FETCH 語句失敗或此行不在結果集中,-2 被提取的行不存在
  begin
  delete from wk_CSVDetail_History where NoteNO=@NoteNO
   delete from wk_CSVHead_History where NoteNO=@NoteNO
  fetch next from YB into @NoteNO --繼續移動遊標,直到@@fetch_status不等於時.
   end
close YB --關閉遊標
deallocate YB --釋放遊標
insert into wk_CSVHead_History select * from inserted
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.