Rownum vs Rowid
What is ROWID ?
ROWID is a pseudo column in a table which store and return row address in HEXADECIMAL format with database tables. ROWID is the permanent unique identifiers for each row in the database
ROWID consists of 18 character string with the format. BBBBBBBBB.RRRR.FFFF Where B is Block, R is Row, F is FIle
An example query would be:
A user can access a row quickly and easily using its row ID.
ROWID can also be used to delete the duplicate records from a tame
What is ROWNUM ?
For each row returned by a query, the ROWNUM pseudo column returns a number which indicates the order in which a row was selected from a table. For example, the 1st row gets the number 1, 2nd gets the number 2 and so on.
ROWNUM can be used to limit the number of rows returned by a query, as shown in the example below:
The row numbers of the records might change if order by clause is used in the query.
ROWNUM can also be used for assigning unique values for every row in a table.
The user can also use ROWNUM to present the dataset in a report with serial numbers.
Last updated
Was this helpful?