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 aROWNUM
of 1, the second has 2, and so on.You can use
ROWNUM
to limit the number of rows returned by a query, as in this example:SELECT * FROM employees WHERE ROWNUM < 10;If an
ORDER
BY
clause followsROWNUM
in the same query, then the rows will be reordered by theORDER
BY
clause. The results can vary depending on the way the rows are accessed. For example, if theORDER
BY
clause 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 the
ORDER
BY
clause in a subquery and place theROWNUM
condition in the top-level query, then you can force theROWNUM
condition 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 as top-N reporting:SELECT * FROM (SELECT * FROM employees ORDER BY employee_id) WHERE ROWNUM < 11;In the preceding example, the
ROWNUM
values are those of the top-levelSELECT
statement, so they are generated after the rows have already been ordered byemployee_id
in the subquery.Conditions testing for
ROWNUM
values 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 a
ROWNUM
of 1 and makes the condition false. The second row to be fetched is now the first row and is also assigned aROWNUM
of 1 and makes the condition false. All rows subsequently fail to satisfy the condition, so no rows are returned.You can also use
ROWNUM
to assign unique values to each row of a table, as in this example:UPDATE my_table SET column1 = ROWNUM;
No. | Subject | Author | Date | Views |
---|---|---|---|---|
49 | Assign a network host to Access Control List | admin | 2016.06.07 | 352 |
48 | ADD_PRIVILEGE (2nd STEP) | admin | 2016.06.07 | 401 |
47 | CREATE_ACL (1st STEP) | admin | 2016.06.07 | 355 |
46 | ACL 보기 | admin | 2016.06.07 | 351 |
45 | Oracle 11g Access Control List for External Network Services | admin | 2016.06.07 | 340 |
44 | Access Control List (ACL) | admin | 2016.06.07 | 379 |
43 | CAPTCHA PLUG-IN | admin | 2016.05.27 | 363 |
42 | SUBSTR | admin | 2016.05.26 | 323 |
41 | FOR LOOP | admin | 2016.05.20 | 328 |
» | ROWNUM | admin | 2016.05.19 | 289 |
39 | NVL | admin | 2016.05.19 | 206 |
38 | INSTR | admin | 2016.05.19 | 870 |
37 | TREE | admin | 2016.05.18 | 811 |
36 | 3D Pie Chart | admin | 2016.05.17 | 295 |
35 | CREATE VIEW | admin | 2016.05.13 | 294 |
34 | test | admin | 2016.05.11 | 178 |
33 | BOOLEAN SAMPLE | admin | 2016.05.11 | 185 |
32 | Display Value, Return Value | admin | 2016.05.10 | 185 |
31 | Fundamentals of PL/SQL | admin | 2016.05.10 | 2107 |
30 | Interactive Report | admin | 2016.05.07 | 162 |