万能的批量删除过程

Posted wslpf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了万能的批量删除过程相关的知识,希望对你有一定的参考价值。

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 ‘[email protected]+‘ where ID in ( select ID from #DelID)‘

exec(@strSql)
end




















以上是关于万能的批量删除过程的主要内容,如果未能解决你的问题,请参考以下文章

万能批量删除

[MSSQL]批量删除表名包含某字符串的数据表&批量删除存储过程包含某字符串的存储过程

存储过程批量删除

mysql 存储过程批量删除表

批量删除

批量删除