加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

rownum浅析

发布时间:2020-12-12 18:49:28 所属栏目:百科 来源:网络整理
导读:先附上官网上的一段,然后是自己写的 ROWNUM For each row returned by a query,the ROWNUM pseudocolumn returns a number indicating the order in which Oracle selects the row from a table or set of joined rows. The first row selected has a ROWNU

先附上官网上的一段,然后是自己写的

ROWNUM

For each row returned by a query,theROWNUMpseudocolumn returns a number indicating the order in which Oracle selects the row from a table or set of joined rows. The first row selected has aROWNUMof 1,the second has 2,and so on.

You can useROWNUMto limit the number of rows returned by a query,as in this example:

SELECT * FROM employees WHERE ROWNUM

<

10;

If anORDERBYclause followsROWNUMin the same query,then the rows will be reordered by theORDERBYclause. The results can vary depending on the way the rows are accessed. For example,if theORDERBYclause causes Oracle to use an index to access the data,then Oracle may retrieve the rows in a different order than without the index. Therefore,the following statement will not have the same effect as the preceding example:

SELECT * FROM employees WHERE ROWNUM

<

11 ORDER BY last_name;

If you embed theORDERBYclause in a subquery and place theROWNUMcondition in the top-level query,then you can force theROWNUMcondition to be applied after the ordering of the rows. For example,the following query returns the employees with the 10 smallest employee numbers. This is sometimes referred to astop-Nreporting:

SELECT * FROM

(SELECT * FROM employees ORDER BY employee_id)

WHERE ROWNUM

<

11;

In the preceding example,theROWNUMvalues are those of the top-levelSELECTstatement,so they are generated after the rows have already been ordered byemployee_idin the subquery.

Conditions testing forROWNUMvalues greater than a positive integer are always false. For example,this query returns no rows:

SELECT * FROM employees

WHERE ROWNUM

>

1;

The first row fetched is assigned aROWNUMof 1 and makes the condition false. The second row to be fetched is now the first row and is also assigned aROWNUMof 1 and makes the condition false. All rows subsequently fail to satisfy the condition,so no rows are returned.

You can also useROWNUMto assign unique values to each row of a table,as in this example:

UPDATE my_table

SET column1 = ROWNUM;

Please refer to the functionROW_NUMBERfor an alternative method of assigning unique numbers to rows.

查询前十个打卡的人

select tt.*,rownum from (        
         select * from mydailydk dk         
         order by dk.dktime asc  ) tt
         where rownum <=10;

第是一个到第二十个打卡的人

select * from (
   select tt.*,rownum rownum_ from (        
         select * from mydailydk dk         
         order by dk.dktime asc  ) tt
         where rownum <= 20)
         where rownum_ >10;

上个功能用 row_num() 函数实现如下(主要用于 根据学科分组 取前几名 或者后几名等的时候用到)

select * from (select id,currentday,name,dktime,row_number() over (partition by name order by dktime asc) rownum_
 from mydailydk ) where rownum_ <=20 and rownum_ >10;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读