Useful Links
Computer Science
Databases
PostgreSQL Database
1. Introduction to PostgreSQL
2. Installation and Basic Management
3. SQL Fundamentals in PostgreSQL
4. Data Types
5. Advanced Querying
6. Indexes and Performance
7. Transactions and Concurrency Control
8. Procedural Programming and Functions
9. Security and User Management
10. Database Administration
11. Backup, Recovery, and Replication
12. Advanced PostgreSQL Features
Data Types
Numeric Types
Integer Types
smallint
integer
bigint
Arbitrary Precision Numbers
numeric
decimal
Floating-Point Types
real
double precision
Serial Types
smallserial
serial
bigserial
Character Types
varchar
char
text
Binary Data Types
bytea
Date and Time Types
timestamp with time zone
timestamp without time zone
date
time with time zone
time without time zone
interval
Boolean Type
Geometric Types
point
line
lseg
box
path
polygon
circle
Network Address Types
cidr
inet
macaddr
macaddr8
Special Types
JSON
JSONB
XML
UUID
Arrays
Composite Types
Range Types
Enumerated Types
Type Conversion and Casting
Domain Types
Previous
3. SQL Fundamentals in PostgreSQL
Go to top
Next
5. Advanced Querying