Easy Tutorial
❮ Postgresql Index Postgresql Schema ❯

PostgreSQL Tutorial

PostgreSQL is a free object-relational database server (ORDBMS) distributed under a flexible BSD license.

PostgreSQL developers pronounce it as post-gress-Q-L.

PostgreSQL's slogan is "The World's Most Advanced Open Source Relational Database."

Reference content: PostgreSQL 10.1 Manual


What is a Database?

A database (Database) is a repository organized, stored, and managed according to data structures.

Each database has one or more different APIs for creating, accessing, managing, searching, and replicating the stored data.

We can also store data in files, but reading and writing data in files is relatively slow.

Therefore, nowadays we use relational database management systems (RDBMS) to store and manage large amounts of data. A relational database is a database based on the relational model, using mathematical concepts and methods such as set algebra to process data in the database.

ORDBMS (Object-Relational Database System) is the product of the combination of object-oriented technology and traditional relational databases. Query processing is an important part of ORDBMS, and its performance directly affects the performance of the DBMS.

ORDBMS adds some new features on the basis of the original relational database.

RDBMS is a relational database management system, which establishes links between entities, ultimately resulting in relational tables.

OODBMS is an object-oriented database management system, which treats all entities as objects and encapsulates these object classes. Communication between objects is done through messages. OODBMS, in essence, is still a relational database.


ORDBMS Terminology

Before we start learning PostgreSQL, let's understand some ORDBMS terminology:


PostgreSQL Features


Related Resources

PostgreSQL 10.1 Manual Online Manual: http://www.tutorialpro.org/manual/PostgreSQL/

Offline Manual - PDF Version: https://pan.baidu.com/s/1h1J14i8tzJUY3p9yyeW0mA, Extraction Code: xs7r. Offline Manual - CHM Version: https://pan.baidu.com/s/1zzBu-Z9unrPew9wl7L_y9w, Extraction Code: tq4z.

Check for the Latest Version: https://github.com/postgres-cn/pgdoc-cn/releases

❮ Postgresql Index Postgresql Schema ❯