摘要: 1 :普通SQL语句可以用Exec执行 eg: Select * from tableName Exec('select * from tableName') Exec sp_executesql N'select * from tableName' -- 请注意字符串前一定要加N 2:字段名,表名,数据库名之类作为变量时,必须用动态SQL... 阅读全文
posted @ 2009-01-30 21:25 scgw 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 代码如下 declare @uid int; set @uid=7; declare @sql nvarchar(1000); set @sql='select * from [aaa] where uid= ' @uid exec(@sql) 提示 消息 245,级别 16,状态 1,第 9 行 在将 varchar 值 'select * from [aaa] where uid= ' 转... 阅读全文
posted @ 2009-01-30 21:20 scgw 阅读(3360) 评论(1) 推荐(0) 编辑