Introduction to PostgreSQL
1 Topics
Introduction to PostgreSQL
6 Sub-topics
What is PostgreSQL and Why Use It
Installing PostgreSQL on Different Platforms
Understanding PostgreSQL Architecture
Connecting to PostgreSQL Database
PostgreSQL Command-Line Tools (psql)
Understanding Databases, Schemas, and Tables
SQL Fundamentals - Data Definition Language (DDL)
1 Topics
SQL Fundamentals - Data Definition Language (DDL)
8 Sub-topics
Creating Databases and Schemas
CREATE TABLE Statement Basics
DROP and TRUNCATE Statements
ALTER TABLE - Adding Columns
ALTER TABLE - Modifying Columns
ALTER TABLE - Dropping Columns
Understanding Table Ownership
PostgreSQL Data Types
1 Topics
PostgreSQL Data Types
10 Sub-topics
Numeric Types - INTEGER, BIGINT, DECIMAL
Character Types - VARCHAR, CHAR, TEXT
Date and Time Types - DATE, TIME, TIMESTAMP
ENUM Types - Creating Custom Types
Choosing the Right Data Type
Basic Data Querying
1 Topics
Basic Data Querying
13 Sub-topics
SELECT Statement Structure
Selecting Specific Columns
Logical Operators - AND, OR, NOT
LIKE and ILIKE Pattern Matching
ORDER BY Clause - ASC and DESC
LIMIT and OFFSET for Pagination