PostgreSQL Installation and Creating Your First Database | SQL Shell & PgAdmin4

Added:

Introduction
Installation
GUI Database
CLI Database
Deletion

Introduction

0:00
Playing Section
  • 1

    Introduces PostgreSQL, a powerful open-source object-relational database.

  • 2

    Shows the official website and overviews its key features.

Basic understanding of Relational Database Management Systems (RDBMS) and how data is structured logically in tables.
Familiarity with the concept of client-server architecture, particularly how a database server processes client requests.
Fundamental command-line interface (CLI) navigation skills to run commands in a terminal or command prompt.
Concept of network ports and local hosting (e.g., understanding 'localhost' and default port assignments like 5432).
Mastering SQL Data Definition Language (DDL) to create, alter, and delete database tables and schemas.
Learning SQL Data Manipulation Language (DML) to write queries for inserting, updating, deleting, and selecting data.
Understanding table relationships (One-to-Many, Many-to-Many) and implementing database normalization.
Exploring user access management, including creating PostgreSQL roles, granting privileges, and database backup/restore procedures.
175.8K views1.8Klikes9:42@BekBraceOriginal Release: 2020-10-24

PostgreSQL is an advanced, open-source object-relational database management system that supports both relational and non-relational queries, featuring a 30-year history of development; this tutorial demonstrates how to install PostgreSQL on Windows using the official installer, configure essential settings including the default port 5432, and create your first database using either the graphical interface PgAdmin4 or the command-line SQL shell (psql) with the CREATE DATABASE command.