SQLServer索引循环删除
Posted Mazey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLServer索引循环删除相关的知识,希望对你有一定的参考价值。
declare qc_cursor cursor SCROLL OPTIMISTIC For
select siteName from tb_vhostcheck
open qc_cursor
declare @siteName nvarchar(50)
while @@fetch_status=0
begin
fetch next from qc_cursor into @siteName
--print @siteName
if not exists(select 1 from vhhostlist where s_comment= @siteName)
begin
print @siteName
delete from tb_vhostcheck where [email protected]
end
end
close qc_cursor
deallocate qc_cursor
以上是关于SQLServer索引循环删除的主要内容,如果未能解决你的问题,请参考以下文章