SQL and Hand Book
SQL and Hand Book
5. SQL Statement for “Find the managers with the count of subordinates greater than 1
(or any other number)”:
29/479
ROWID Pseudocolumn
For each row in the database, the ROWID pseudocolumn returns the address of the row. Oracle Database
rowid values contain information necessary to locate a row:
The datafile in which the row resides (first file is 1). The file number is relative to the tablespace.
Usually, a rowid value uniquely identifies a row in the database. However, rows in different tables that
are stored together in the same cluster can have the same rowid.
Values of the ROWID pseudocolumn have the datatype ROWID or UROWID. Please refer to "ROWID
Datatype" and "UROWID Datatype" for more information.
They can show you how the rows in a table are stored.
You should not use ROWID as the primary key of a table. If you delete and reinsert a row with the Import
and Export utilities, for example, then its rowid may change. If you delete a row, then Oracle may
reassign its rowid to a new row inserted later.
Although you can use the ROWID pseudocolumn in the SELECT and WHERE clause of a query, these
pseudocolumn values are not actually stored in the database. You cannot insert, update, or delete a
value of the ROWID pseudocolumn.
Example This statement selects the address of all rows that contain data for employees in department
20: