declare @string carchar(500)
exec('select uid ,userid ,name , roleid,
birthday , (Case when sex = 0 then '男' else '女' end) as sex,position,telephone , organizationid, Activate from users where 1=1'+ @string)
我写了一个存储过程
过程中声明了一个变量
@string
完了之后在执行的时候
我想把查询中的 sex 转换成 男 女 注: sex 整型 0 代表 男 1代表 女
执行
exec('select uid ,userid ,name , roleid,
birthday , (Case when sex = 0 then '男' else '女' end) as sex,position,telephone , organizationid, Activate from users where 1=1'+ @string)
老是发生语法错误 我知道 是因为(Case when sex = 0 then '男' else '女' end) 也有 ‘ 引号
谁知道 我怎么改下能 正确的执行 exec吗
------解决方案--------------------
- SQL code
exec('select uid ,userid ,name , roleid,birthday , (Case when sex = 0 then ''男'' else ''女'' end) as sex,position, telephone , organizationid, Activate from users where 1=1'+ @string)
------解决方案--------------------
- SQL code
'男' else '女'-->''男'' else ''女''
------解决方案--------------------
exec('select uid ,userid ,name , roleid,
birthday , (Case when sex = 0 then ''男'' else ''女'' end) as sex,position,telephone ,
organizationid, Activate from users where 1=1'+ @string)
---字符串引号一个替换为双个
------解决方案--------------------
- SQL code
其它方法:--------------------------------------------动态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, @sqls nvarchar(4000) set @sqls='select count(*) from tableName' exec(@sqls) --如何将exec执行结果放入变量中? declare @num int, @sqls nvarchar(4000) set @sqls='select @a=count(*) from tableName ' exec sp_executesql @sqls,[email protected] int output',@num output select @num