Search CTRL + K

Database Model

关系型数据库 中,属性 值的集合,是 关系 中的一条 记录

也就是数学领域中的 多元组

元组结构

对于 存储管理器 来说,元组 是一个字节序列,DBMS 负责将这些字节转成 属性 类型和值。

元组包含:

数据库管理系统 给每个 元组 分配了一个独一无二的 record id,用于记录该元组在磁盘的物理位置 [1]


CMU 15-445

A tuple is a set of attribute values in the relation.[2]

Tuple layout

A tuple is essentially a sequence of bytes. It is the DBMS’s job to interpret those bytes into attribute types and values.[3]


  1. https://15445.courses.cs.cmu.edu/fall2023/slides/03-storage1.pdf ↩︎

  2. https://youtu.be/uikbtpVZS2s?t=2037 ↩︎

  3. https://15445.courses.cs.cmu.edu/fall2023/notes/03-storage1.pdf ↩︎