sql中N'@Counts int out '的含义

来源:百度知道 编辑:UC知道 时间:2024/05/29 01:43:05
declare @strtmp nvarchar(4000)
declare @counts int
declare @tblname varchar(4000)
set @tblname='game_list'

set @strTmp = 'select @Counts=Count(*) FROM '+@tblName
exec sp_executesql @strTmp,N'@Counts int out ',@Counts out
print @counts

当中 N'@Counts int out ' 是什么意思啊

动态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 tabl