万能的批量删除过程

go---创建万能批量删除
create proc [dbo].[proc_Delete]
@TableName varchar(50),
@Id varchar(5000)
as
begin
declare @strSql varchar(5000)

declare @sql varchar(4000)

set @sql='select col='''+ replace(@Id,',',''' union all select ''')+''''

if OBJECT_ID('tempdb..#DelID') is not null
drop table #DelID
create table #DelID(ID VARCHAR(36))

insert into #DelID exec(@sql)

set @strSql = 'delete from '+@TableName+' where ID in ( select ID from #DelID)'

exec(@strSql)
end

猜你喜欢

转载自www.cnblogs.com/wslpf/p/9381356.html