日期:2014-05-17  浏览次数:20493 次

简单的存储过程,但是总是出错。请高手了。
declare @sql varchar(1000)
set @sql='delete from users 
where userid=1 and tagid in (23)
'
exec @sql

消息 2812,级别 16,状态 62,第 5 行
找不到存储过程 'delete from users 
where userid=1 and  tagid in (23)
'。

------解决方案--------------------
exec(@sql)