--TRY
alter  procedure  fengye  
    @pagesize  int,  
    @pageindex int 
as  
   declare  @jilu  int  
   set  @jilu=@pageindex*@pagesize  -- 不在前多少条记录 -- 
 exec( 'select  top  '+@pagesize+'  *  from  SchoolmateInfo  
where id not in (select top '+@jilu+'  id from SchoolmateInfo order by id asc) order by id asc  ')  

解决方案 »

  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.   

    2000 top前不支持变量,用动态SQL
      

  3.   

     alter   procedure   fengye   
         @pagesize   int,  @pageindex int --pagesize 是每页的条数记录 pageindex是当前页数--
    as  
    declare   @count int  --总条数记录--
    declare   @jilu   int   --不在多少条范围内--
    select @count=count(*) from  SchoolmateInfo
    if(@count <= 3)   --当我记录小于等于三--
    begin
     select * from SchoolmateInfo
    end 
    else      ----
    begin
    set  @jilu=@pageindex*@pagesize  -- 不在前多少条记录 --
    exec(' select  top  '+@pagesize+' *  from  SchoolmateInfo where id not in (select top  
     '+@jilu+' id from SchoolmateInfo order by id asc) order by id asc ')  
    end
    我在 数据库里面,可以,   但到了程序里面就出错了
     
      

  4.   

      查询出来是空的,  说明我这句话是    不行的   
    exec(' select  top  '+@pagesize+' *  from  SchoolmateInfo where id not in (select top  
    '+@jilu+' id from SchoolmateInfo order by id asc) order by id asc ')  
      帮我看看
     
      

  5.   

    alter  procedure  fengye  
        @pagesize  int,  @pageindex int --pagesize 是每页的条数记录 pageindex是当前页数-- 
    as  
    declare  @count int  --总条数记录-- 
    declare  @jilu  int  --不在多少条范围内-- 
    select @count=count(*) from  SchoolmateInfo 
    if(@count <= 3)  --当我记录小于等于三-- 
    begin 
    select * from SchoolmateInfo 
    end 

    else      ---- 
    begin 
    set  @jilu=@pageindex*@pagesize  -- 不在前多少条记录 -- 
    exec(' select  top  '+@pagesize+' *  from  SchoolmateInfo where id not in (select top  
    '+@jilu+' id from SchoolmateInfo order by id asc) order by id asc ')  
    end 

    做到 红色部分的  if 条件里面  可以显示出来 
    但做到else条件里面   ,     界面就没有数据显示了   我else里面   是不是    有问题啊 
     
      

  6.   

    传的参数以sql的显示执行能出来数据吗?