Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

what is rownum in oracle

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.
 
PREVIOUS NEXT
Tagged: #rownum #oracle
ADD COMMENT
Topic
Name
3+8 =