一样的啊
select top 500 * from t

解决方案 »

  1.   

    SELECT TOP 500 *
    FROM yourTable
    ORDER BY yourOrderCol
      

  2.   

    select top 500 * from tablename
    order by 字段1....
      

  3.   

    select top 400 * from tablename
    where ( field1 not in (select top 100 field1 from tablename))
    AND   ( field2 not in (select top 100 field2 from tablename))
    ...
    AND   ( fieldn not in (select top 100 fieldn from tablename))
      

  4.   

    select identity(int,1,1) as id , * into #a from table order by col_1
    select * from #a where id between 100 to 500
    drop table #a
      

  5.   

    应该是select * from  #a where id between 100 and 500