A tuple in PostgreSQL is a single row of data within a table. It represents a record that contains values for each column defined by the table's schema. Tuples are stored in pages on disk and include not only the actual data but also metadata, such as the tuple's visibility information, which helps manage concurrency and transaction control. The structure of a tuple ensures efficient storage and retrieval operations, supporting the database's performance and reliability.
![[ex_group.svg]]