当前位置: 代码迷 >> Sql Server >> set有关问题
  详细解决方案

set有关问题

热度:87   发布时间:2016-04-27 20:36:42.0
set问题
begin
declare       @title       varchar(20)      
declare       t_cursor       cursor   for     select   name   from   syscolumns   where   id=(select   id   from   sysobjects   where   name= 'a_dpgj ')   and   type=39
open       t_cursor      
fetch       next       from       t_cursor       into       @title
while       @@fetch_status=0      
    begin      
                    --insert       into       @t       select       id       from       dbo.f_getChild(@id)      
--下面这一句话,[email protected]@title的值写成了 'cccaaaaaacc '
--请问如何让这个update语句成功
update   a_dpgj   set   @title= 'cccaaaaaacc '
                    fetch       next       from       t_cursor       into       @title      
    end      
       
close       t_cursor      
deallocate       t_cursor      
end

------解决方案--------------------
set @sql= 'update a_dpgj set '[email protected] + '= ' 'cccaaaaaacc ' ' '
  相关解决方案