PostgreSQL

来源:这里教程网 时间:2026-03-14 20:51:05 作者:

译文: PostgreSQL是基于POSTGRES的对象关系数据库管理系统(ORDBMS) 版本4.21 开发来的软件,由加州大学伯克利分校计算机科学系开发。 POSTGRES开创了许多概念,这些概念在很久以后出现在一些商业数据库系统中。 PostgreSQL是这个原始‘Berkeley code’ 的开源衍生版。它支持了大部分SQL标准,并提供许多当前关系型数据库流行的功能,如: • 复杂的查询 • 外键 • 触发器 • 可更新视图 • 事务完整性 • 多版本并发控制 此外,PostgreSQL可以被用户以多种方式扩展,例如添加新的内容: • 数据类型 • 功能 • 操作符 • 聚合函数 • 索引方法 • 程序语言 由于自由的许可证,PostgreSQL可以被任何人自由地使用、修改和发布。无需为任何目的使用而交费,无论是私人的,商业的,还是学术的。原文: PostgreSQL is an object-relational database management system (ORDBMS) based on POSTGRES,Version 4.21, developed at the University of California at Berkeley Computer Science Department. POSTGRES pioneered many concepts that only became available in some commercial database systems much later. PostgreSQL is an open-source descendant of this original Berkeley code. It supports a large part of the SQL standard and offers many modern features: • complex queries • foreign keys • triggers • updatable views • transactional integrity • multiversion concurrency control Also, PostgreSQL can be extended by the user in many ways, for example by adding new • data types • functions • operators • aggregate functions • index methods • procedural languages And because of the liberal license, PostgreSQL can be used, modified, and distributed by anyone free of charge for any purpose, be it private, commercial, or academic.Notic:欢迎大家提供更专业的解释

相关推荐