SELECT * FROM table LIMIT 0,8;  显示的效果是id name password
1  a     a
2  a     a
3  a     a
7  a     a
8  a     a
9  a     a
11  a     a
14  a     a
 从0开始 显示 8条数据
--------------以上是mysql 写法如果用SQL SERVER 2005 怎么取代上面的写法呢?

解决方案 »

  1.   

    SELECT top 8 * FROM table 
      

  2.   

    麻烦大家 写下好吧,本人初学SQL SERVER 2005  谢谢! 
      

  3.   

    ;WITH CTE AS (
    SELECT * ,ROW_NUMBER() OVER(ORDER BY GETDATE()) AS NUM
    FROM TAB
    )
    SELECT * FROM CTE WHERE NUM BETWEEN 0 AND 8
      

  4.   

    取n到m行1. 
    select top (n-m+1) * from tablename where id not in (select top n id from tablename order by id asc/*|desc*/) 2. 
    select top m * into 临时表(或表变量) from tablename order by columnname -- 将top m笔插入到临时表 
    set rowcount n   --只取n条结果
    select * from 表变量 order by columnname desc 3. 
    select top n * from  
    (select top m * from tablename order by columnname) a 
    order by columnname desc 
    4.如果tablename里没有其他identity列,那么: 
    先生成一个序列,存储在一临时表中.
    select identity(int) id0,* into #temp from tablename 取n到m条的语句为: 
    select * from #temp where id0 > =n and id0  <= m 如果你在执行select identity(int) id0,* into #temp from tablename这条语句的时候报错,那是因为你的DB中间的select into/bulkcopy属性没有打开要先执行: 
    exec sp_dboption 你的DB名字,'select into/bulkcopy',true 
    5.如果表里有identity属性,那么简单: 
    select * from tablename where identity_col between n and m  6.SQL2005开始.可以使用row_number() over()生成行号
    ;with cte as
    (
     select id0=row_number() over(order by id),* from tablename
    )
    select * from cte where id0 between n to m
      

  5.   

    这个应该是去前面多少条记录吧!sql server: select top 8 × from tb;
    oracle: select × from tb where rownum<=8;
      

  6.   

     create proc test
    @currPage int,
    @pageSize int,
    @filter varchar(500)
    as
     declare @s_sql nvarchar(max)
     set @s_sql='select @count=count(select * from test l '+@filter+'top'+@currPage+','+@pageSize')';
    exec(@s_sql)
    go
    传入的参数
    '',0,3显示的效果:
    id name password
    1 a a
    3 b b
    6 c c