select top '"+10+"' * from shopStyle where styleId not in (select top '"+10*(page-1)+"' shopStyle from  shopStyle)帮忙看看怎么错的

解决方案 »

  1.   


    declare @page int 
    set @page = 5
    select top 10 * from shopStyle 
    where styleId not in (select top (10*(@page-1)) shopStyle from  shopStyle) 
      

  2.   

    /*
    在TOP后面使用变量
    (爱新觉罗.毓华  2008-01-02  广东深圳)
    */--SQL SERVER 2005 的写法
    use adventureworks
    goDECLARE @Percentage int
    SET @Percentage = 1
    SELECT TOP (@Percentage) PERCENT
    Name
    FROM Production.Product
    ORDER BY Name/*
    Name
    ----------------------
    Adjustable Race
    All-Purpose Bike Stand
    AWC Logo Cap
    BB Ball Bearing
    Bearing Ball
    Bike Wash - Dissolver(6 行受影响)
    */-----------------------------------
    --SQL SERVER 2000 的写法
    create table a([id] [int])
    insert into a(id) values(1)
    insert into a(id) values(2)
    insert into a(id) values(3)
    insert into a(id) values(4)
    insert into a(id) values(5)declare @num as int
    declare @sql as varchar(2000)
    set @num = 2
    set @sql = 'select top ' + cast(@num as char) + ' * from a'
    exec(@sql)drop table a
    /*
    id          
    ----------- 
    1
    2
    */
      

  3.   

    目的想得到动态行数吗?
    declare @TopCount int 
    Set @TopCount = '50'
    exec('select top '+@TopCount+' * from shopStyl')