if(OBJECT_ID('test') is not null )
 drop table test
 create table test
 (
 id int not null,
 num int not null
 )
 insert test values(1,2),(1,4),(2,1),(2,5),(2,3),(1,3),(3,1),(3,4),(1,6)
 select * from test order by id 
 
 --目的: 将 id为 1,2 之间 num相加最大的 id 打印出来 ,
 --最早实现效果
 select top 1 id,SUM(num) from test where id in(1,2) group by id
 --需要修改的地方
 declare @id int 
 declare @ids varchar(10)='1,2' 
exec ('select top 1  '+@id+'= id from test where id in ('+@ids+')')
print @id 
    drop table test备注: 这里 实现的最终效果 是 把 @id 给 print 出来,
        并不是 仅仅为了 描述的 实现效果
      我就是想知道 在 exec 运行字符串里面 
      如何在左边 给 变量赋值。
  请大家 赐教~!!

解决方案 »

  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.   

    declare @ids varchar(10)='1,2' 
            exec ('select top 1  '+@id+'= id from test where id in ('+@ids+')')
            print @id 
        drop table test用输出参数形式,SP_EXECUTESQL
      

  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 
      

  4.   

    if(OBJECT_ID('test') is not null )
     drop table test
     create table test
     (
     id int not null,
     num int not null
     )
     insert test values(1,2),(1,4),(2,1),(2,5),(2,3),(1,3),(3,1),(3,4),(1,6)
     select * from test order by id 
     
     --目的: 将id为1,之间num相加最大的id 打印出来,
     --最早实现效果
     select top 1 id,SUM(num) from test where id in(1,2) group by id
     --需要修改的地方 
     
     declare @id int 
     declare @ids varchar(10)='1,2' 
     declare @num int 
     
     declare @sqls nvarchar(4000)='select top 1  @a=id,@b=num from test where id in ('+@ids+')'
     exec SP_EXECUTESQL @sqls,N'@a int output,@b int output',@id output,@num output
    select @id as adfasd
        select @num as asdfaasdfasd
        
        --drop table test 
        
      

  5.   

    要输出,需要用SP_EXECUTESQL
    或者你把exec的结果放到临时表或者表变量中,再读取一次