|
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
Term: ROWNUM
Definition: Note that a ROWNUM is not data in the database or table. It has no relationship to anything in the database, including tables, tablespaces, data files, or to the order in which a row is inserted into a table. A ROWNUM is the number of a row selected from a table and will change depending on the order in which rows are selected. Example Usage: The SQL query below uses ROWNUM to retrieve only the first 4 records from the EMP table: SELECT ROWNUM, DEPTNO, ENAME, SAL FROM EMP Related Links: |
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2024 psoug.org |