关系数据库设计

数据库设计与E-R模型

实体-联系模型

实体集&联系集

实体-联系(entity-relationship,E-R)。实体表示现实世界中可区别于所有其他对象的的一个“事物”或“对象”。每个实体有一组性质,其中一些性质的值可以唯一的标示一个实体。实体集(entity set)是具有相同类型的一个实体集合。外延(extension)指属于实体集的实体的实际的集合。实体通过一组属性(attribution)来表示,每个属性有一个值(value)。

阅读更多

B+-trees

What is a B+-tree

Most queries can be executed more quickly if the values are stored in order. But it’s not practical to hope to store all the rows in the table one after another, in sorted order, because this requires rewriting the entire table with each insertion or deletion of a row.

阅读更多