Linking rows in PostgreSQL

How does PostgreSQL link rows in separate tables?

Options
  1. It uses foreign key and primary key linking in its internal system tables
  2. it uses a JSON file to store the links
  3. It uses reverse indexing
  4. None of these

Related Posts