建议删除功能写在存储过程中,然后调用存储过程删除表数据
用SQL() 函数
SET NOCOUNT ON
declare @sql varchar(100)
select @sql = 'delete from 表名'
exec(@sql)
select 1