在SQL语句中,String前出现的N”标示,作用是著名被标注的字符串是Unicode编码。一般情况下都表明你试图将NCHAR, NVARCHAR or NTEXT 的值类型转换为(或复值到) CHAR, VARCHAR or TEXT中。
另外,有些SQL系统存储过程的参数需要用Unicode编码的值作为参数。
如果当你输入
EXEC sp_ExecuteSQL ‘SELECT 1′
会有以下错误:
Server: Msg 214, Level 16, State 2, Procedure sp_executesql, Line 1
Procedure expects parameter ‘@statement’ of type ‘ntext/nchar/nvarchar’.
正确的方法是:
— (a) using the N prefix
EXEC sp_ExecuteSQL N’SELECT 1′
— (b) using a variable
DECLARE @sql NVARCHAR(100)
SET @sql = N’SELECT 1′
EXEC sp_ExecuteSQL @sql
动态sql语句基本语法
1 :普通SQL语句可以用Exec执行
eg: Select * from tableName
Exec(’select * from tableName’)
Exec sp_executesql N’select * from tableName’ — 请注意字符串前一定要加N
2:字段名,表名,数据库名之类作为变量时,必须用动态SQL
eg:
declare @fname varchar(20)
set @fname = ‘FiledName’
Select @fname from tableName — 错误,不会提示错误,但结果为固定值FiledName,并非所要。
Exec(’select ‘ + @fname + ‘ from tableName’) — 请注意 加号前后的 单引号的边上加空格
当然将字符串改成变量的形式也可
declare @fname varchar(20)
set @fname = ‘FiledName’ –设置字段名
declare @s varchar(1000)
set @s = ’select ‘ + @fname + ‘ from tableName’
Exec(@s) — 成功
exec sp_executesql @s — 此句会报错
declare @s Nvarchar(1000) — 注意此处改为nvarchar(1000)
set @s = ’select ‘ + @fname + ‘ from tableName’
Exec(@s) — 成功
exec sp_executesql @s — 此句正确
3. 输出参数
declare @num int,
@sql nvarchar(4000)
set @sql=’select count(*) from tableName’
exec(@sql)
–如何将exec执行结果放入变量中?
declare @num int, @sql nvarchar(4000)
set @sql=’select @a=count(*) from tableName ‘
exec sp_executesql @sql,N’@a int output’,@num output
select @num