SQL语句例子:update   table   set   [name]='中国'   where   charindex(','+cast(id as varchar)+',',','+@id+',')>0 
我需要把上面的SQL语句改成带参数的存储过程.如下面
带参数的:update   @table   set   @file  where   charindex(','+cast(@tableID as varchar)+',',','+@id+',')>0
 怎么改呢?谢谢!

解决方案 »

  1.   

    动态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,N'@a int output',@num output 
    select @num 
      

  2.   

    exec ('update '+@table+' set '+@file+'=''中国'' where charindex('',''+cast(id)+'','','','+@id+','')>0')
      

  3.   

    我需要的是存储过程那种.现在问题就出在第二个参数@file    这里不怎么怎么解决.老出错.
      

  4.   

    那个@file是包括了一个"句子"的.比如[name]='中国',[rank]=1   这种.
    也就是说@file=[name]='中国',[rank]=1       @file不是一个字段.
    谢谢.
      

  5.   

    alter proc proname
    @table varchar(50),
    @file varchar(50),
    @value varchar(50),
    @tableID varchar(50),
    @id varchar(50)
    as
    begin
    declare @sql varchar(8000)
    set @sql='update '+@table+' set '+@file+'='''+@value+''' where charindex('',''+cast('+@tableid+' as varchar(50))+'','','',''+'''+@id+'''+'','')>0'
    select @sql
    endexec  proname 'tb','name','中国','id','1,2,3'--结果
    update tb set name='中国' where charindex(','+cast(id as varchar(50))+',',','+'1,2,3'+',')>0
      

  6.   


    exec ('update '+@table+' set '+@file+' where charindex('',''+cast(id)+'','','','+@id+','')>0') 
      

  7.   

    +@file+'='''+@value+''' 这里的字段跟值必需要分开吗?
    我就是想自由一点.因为有可能有两个三个,甚至更多的@file=@value
    现在这个只能是一个的吧?
      

  8.   

    谢谢各位.已经可以了.
    create procedure P
    @table varchar(50),
    @file varchar(50),
    --@value varchar(50),
    @tableID varchar(50),
    @id varchar(50)
    as
    declare @sql varchar(8000)
    set @sql='update '+@table+' set '+@file+' where charindex('',''+cast('+@tableid+' as varchar(50))+'','','',''+'''+@id+'''+'','')>0'
    execute(@sql)P 'table','title=''中国'',message=''加油''','id','1,2,'