摘要:
关于Exec返回值的问题有很多,在这做个简要的总结。 读查询语句示例: Declare @count int 1 set @strSql=N'select @a= count(*) from ['+ @tblName + '] where 1=1 '+ @strWhere2 exec sp_executesql @strSql ,N'@a int output',@Count output3 select @Count 要点: 1.利用系统存储过程 sp_executesql 2. 在要执行的Sql文中加入参数,如 "@a", 阅读全文
posted @ 2008-11-18 12:01 codingsilence 阅读(260) 评论(0) 推荐(0) 编辑