当前位置 博文首页 > 关系数据库_cuk0051的博客:关系数据库理论

    关系数据库_cuk0051的博客:关系数据库理论

    作者:[db:作者] 时间:2021-08-29 10:17

    关系数据库理论

    Relational Databases are the software implementation of the concepts expressed by the theory introduced by the Relational Model.

    关系数据库是关系模型引入的理论所表达的概念的软件实现。

    In a Relational Database, data is stored in tables.

    在关系数据库中 ,数据存储在表中

    Each table contains one or more columns, that hold data of a specific type, like strings, numbers and so on.

    每个表包含一个或多个 ,这些保存特定类型的数据,例如字符串,数字等。

    The set of a table and all the rules about its columns is called a schema.

    表的集合及其有关列的所有规则称为模式

    Each table can define constrains upon the data that each row can contain.

    每个表可以对每行可以包含的数据定义约束

    Tables can reference each other, forming relationships, using foreign keys.

    表可以使用外键相互引用,形成关系。

    A Database Management System is the software that implements the database in a computer system.

    数据库管理系统是在计算机系统中实现数据库的软件。

    Commonly, relational databases use the SQL language to let us give instructions to create a database, define its tables schema, fill tables with data, and finally query the data when needed.

    通常,关系数据库使用SQL语言让我们给出创建数据库,定义其表架构 ,用数据填充表以及最终在需要时查询数据的指令。

    Some examples of software implementing relational databases are PostgreSQL, MySQL, SQLite, Oracle and MicroSoft SQL Server.

    实现关系数据库的软件示例包括PostgreSQL,MySQL,SQLite,Oracle和MicroSoft SQL Server。

    翻译自: https://flaviocopes.com/relational-databases/

    关系数据库理论

    cs