数据库 字段  ID  body 其中 ID是唯一的ID       body1        第1页
2        第2页
3        第3页
4        第4页
5        第5页在 id=2 时,如何获得 body 的值, 其中这个 id也是变量,是不固定的.

解决方案 »

  1.   

    select body from tb where id=2
      

  2.   

    declare @id int
    set @id=2exec ('select body from tb where id='+cast(@id as varchar))
      

  3.   

    动态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 
      

  4.   

    delclare @id int 
    select @id = ?
    select body from tb where id=@id
      

  5.   

    居然有这问题
    select body from tb where id=2
      

  6.   


    create proc wsp
    @id int
    as
    select body from 表名 where id=@id
    --调用 :
    exec wsp 2
      

  7.   

    数据库   字段     ID     body   其中   ID是唯一的 ID               body 1                 第1页 
    2                 第2页 
    3                 第3页 
    4                 第4页 
    5                 第5页 在   id=2   时,如何获得   body   的值,   其中这个   id也是变量,是不固定的. ------------------declare @id as int
    set @id = 2select * from tb where id = @id这个意思?
      

  8.   

    ID 不固定,  就是当ID 为2是显示 2的 body 内容, 为3时就显示  3的 body内容.
    数据库是:mysql
      

  9.   

    select *
    from T
    where id = ?
      

  10.   

    大概是这样.不知道语法有没有错误.自己查看mysql手册中的prepare预处理语句.不过在5.0版后才有.delimiter $$
    create procedure p_test(in in_id int)
    begin
        set @str=concat('select * from tb where id=',in_id);
        prepare stmt from @str;
        execute stmt;
        deallocate prepare stmt;
    end$$
    delimiter ;
      

  11.   

    DECLARE @body VARCHAR(8000),@id INT
    SET @id=2
    SELECT @body=body FROM tb WHERE id=@id
    PRINT @body