relationid
Relationid, or relation identifier, is an internal, system-assigned unique identifier given to every relation in a relational database. A relation can be a base table, a view, an index, a sequence, or other database objects that are stored and referenced as relations. The primary purpose of a relationid is to provide a stable reference to the object independent of its human-facing name.
In practice, database engines store and use these identifiers in their system catalogs to track dependencies,
A common example is seen in PostgreSQL, where each relation has an object identifier (OID) that serves
Across different database systems, the concept exists under similar names (for example, object_id), but the exact