declare @Id int
declare @tb varchar(3000)
declare @sql2 varchar(3000)
--select @Id=Count(R.Id) from ReturnFix R, CoLocal C where C.Id=R.CoLocId and C.Id=(select top 1 id from Colocal where UserNameCo=@UserName)
set @tb='i.ProductId=1 and b.brandid=44'set @sql2 = ' select @Id=count(distinct  itemid)
from Item i,Item_Parameter ip, Item_Parameter_Value ipv, Brand b, co c
where I.Status=''上'' and i.itemid=ipv.itemid and B.BrandId=i.BrandId and ipv.ParameterId=ip.ParameterId and c.itemid=i.itemid and 'set @sql2 = @sql2 + @tbexec (@sql2)
print @sql2
print 后得出:消息 137,级别 15,状态 1,第 1 行
必须声明标量变量 "@Id"。
 select @Id=count(distinct  itemid)
from Item i,Item_Parameter ip, Item_Parameter_Value ipv, Brand b, co c
where I.Status='上' and i.itemid=ipv.itemid and B.BrandId=i.BrandId and ipv.ParameterId=ip.ParameterId and c.itemid=i.itemid and i.ProductId=1 and b.brandid=44可我都声明@Id变量了啊
我是想得出itemid的个数?问题出在哪?

解决方案 »

  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.   

    --如果你的语句正确,不需要动态SQL.
    declare @Id intselect @Id=count(distinct  itemid)
    from Item i,Item_Parameter ip, Item_Parameter_Value ipv, Brand b, co c
    where I.Status='上' and i.itemid=ipv.itemid and B.BrandId=i.BrandId and ipv.ParameterId=ip.ParameterId and c.itemid=i.itemid and i.ProductId=1 and b.brandid=44
      

  3.   

    declare @Id int
    declare @tb varchar(3000)
    declare @sql2 varchar(3000)set @tb='i.ProductId=1 and b.brandid=44'set @sql2 = ' select @Id=count(distinct  itemid)
    from Item i,Item_Parameter ip, Item_Parameter_Value ipv, Brand b, co c
    where I.Status='+ N'上'+ 'and i.itemid=ipv.itemid and B.BrandId=i.BrandId and ipv.ParameterId=ip.ParameterId and c.itemid=i.itemid and 'set @sql2 = @sql2 + @tbexec (@sql2)
    print @sql2
      

  4.   

    declare @Id int
    declare @tb varchar(3000)
    declare @sql2 Nvarchar(3000)
    set @id=0
    --select @Id=Count(R.Id) from ReturnFix R, CoLocal C where C.Id=R.CoLocId and C.Id=(select top 1 id from Colocal where UserNameCo=@UserName)
    set @tb='i.ProductId=1 and b.brandid=44'set @sql2 = ' select  count(distinct  itemid)
    from Item i,Item_Parameter ip, Item_Parameter_Value ipv, Brand b, co c
    where I.Status=''上'' and i.itemid=ipv.itemid and B.BrandId=i.BrandId and ipv.ParameterId=ip.ParameterId and c.itemid=i.itemid and 'set @sql2 = @sql2 + @tbexec SP_EXECUTESQL  @sql2,N'@idx int output',@id output
    print @sql2
      

  5.   

    爷们学习ing......