today:
42
yesterday:
419
Total:
1,019,446

SQL ROWNUM

admin 2016.05.19 15:43 Views : 255

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 ROWNUM 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 follows ROWNUM in the same query, then the rows will be reordered by the ORDER BY clause. The results can vary depending on the way the rows are accessed. For example, if the ORDER 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 the ROWNUM condition in the top-level query, then you can force the ROWNUM 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-level SELECT statement, so they are generated after the rows have already been ordered by employee_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 a ROWNUM 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
126 Global pages admin 2023.05.09 49
125 YEAR EXPRESSIONS admin 2023.05.25 49
124 FINAL TEST admin 2023.05.08 52
123 TEST admin 2023.05.03 53
122 ORACLE COLLECTION admin 2023.05.08 53
121 GitHub.com/Oracle/APEX. admin 2023.05.04 54
120 DATE -> DAY CONVERT SQL admin 2023.05.25 55
119 GRAPH (BAR) SQL SAMPLE admin 2023.05.25 57
118 INNER JOIN admin 2023.05.19 59
117 TEST admin 2023.04.28 61
116 GP 영수증 (3) -01/04/2023 admin 2023.01.04 65
115 WHDR email address admin 2023.04.13 67
114 Monthly SUM admin 2023.05.22 69
113 GP - 영수증 (2) admin 2022.11.07 71
112 GP 영수증 본문 admin 2022.11.07 72
111 CHANGE TABLE NAME admin 2023.05.31 74
110 Building Mobile Applications with Oracle Application Express 5.0 admin 2017.11.25 75
109 ipconfig admin 2023.06.03 79
108 LOOP TABLE UPDATE admin 2023.05.19 80
107 Manufacturing resource planning (MRP II) admin 2018.02.14 83