sql查询20到30条记录

阅读更多

1. MySql查询

[sql]  view plain  copy
 
  1. mysql> SELECT * FROM table LIMIT 20,10;  // 检索记录行 21-30    
  2.     
  3. //为了检索从某一个偏移量到记录集的结束所有的记录行,可以指定第二个参数为 -1:     
  4. mysql> SELECT * FROM table LIMIT 95,-1; // 检索记录行 96-last.    
  5.     
  6. //如果只给定一个参数,它表示返回最大的记录行数目:     
  7. mysql> SELECT * FROM table LIMIT 5;     //检索前 5 个记录行    
  8.     
  9. //换句话说,LIMIT n 等价于 LIMIT 0,n    

 

2. SqlServer查询

查询表中第10条到第30条数据

select top 20 * from table(表名) where id(主键) not in(select top 10 id from table)

如果要查询第十条到第一百条就是:

select top 90 * from table(表名) where id(主键) not in(select top 10 id from table)

 

如果要按id降序的话,就要加上order by pId DESC 括号里也要加

 

2.1先根据ID升序 查询前30条记录信息,再将查询的结果根据ID降序 查询前20条记录

 

[sql]  view plain  copy
 
  1. select   *   
  2.  from   (select   top   20   *   from   (select   top   30   *   from   表名   order   by   ID)   t1   order   by   ID   desc)   t2   
  3.  order   by   ID   

2.2先将查询出前10条记录信息,然后将这10条信息从结果集中剔除掉

 

 

[sql]  view plain  copy
 
  1. select top 10 * from 表名 where id not in (select top 10 id from 表名 order by id ascorder by ID  

2.3先查询出前10条记录最大的ID,然后再查询出>ID的前10条记录信息

 

 

[sql]  view plain  copy
 
  1. select   top   10   *  
  2. from   表名  
  3. where   ID> (select   max(ID)   from   (select   top   10   ID   from   表名   order   by   ID)   t1)  
  4. order   by   ID   

2.4SqlServer2005后可以根据ROW_NUMBER查询

 

 

[sql]  view plain  copy
 
  1. select   *   from      
  2. (select   *,   ROW_NUMBER()   OVER   (order   by   ID)   AS   ROWNUM   from   表) t   
  3. where   ROWNUM   between   21   and   30  


3.Oracle查询

 

 

[sql]  view plain  copy
 
  1. select * from (select rownum no,* from 表名 where rownum<=30 ) where no >20;  

 

4.Oracle的rownum与rowid区别:

ROWNUM是对结果集加的一个伪列,即先查到结果集之后再加上去的一个列 (强调:先要有结果集)。简单的说 rownum 是对符合条件结果的序列号。它总是从1开始排起的。所以你选出的结果不可能没有1,而有其他大于1的值;参考:http://tenn.iteye.com/blog/99339

 

rowid 与 rownum 虽都被称为伪列,但它们的存在方式是不一样的,rowid 可以说是物理存在的,表示记录在表空间中的唯一位置ID,在DB中唯一。只要记录没被搬动过,rowid是不变的。rowid 相对于表来说又像表中的一般列,所以以 rowid 为条件就不会有 rownum那些情况发生

你可能感兴趣的:(sql查询20到30条记录)