Category: Learning resources

Curated lists of books to buy to learn PostgreSQL, from beginner SQL intros to advanced internals and performance books.

Roundups of courses, YouTube playlists, and workshop recordings, with guidance on what to use at each experience level.

Learning resources

PostgreSQL Full-Text Search: Step-by-Step Tutorial

Full-text search is one of those features teams assume requires Elasticsearch or a separate search service. PostgreSQL has had it built in for years: tsvector, tsquery, GIN indexes, and relevance ranking are all part of the core database. For product catalogs, document libraries, log search, and site search up to millions of rows, it is […]

admin 
Learning resources

How to Migrate PostgreSQL to Amazon RDS

If your Houston startup or enterprise is still running PostgreSQL on a self-managed server, Amazon RDS is one of the fastest ways to cut operational overhead. AWS handles backups, patching, failover, and storage scaling, and its managed engine keeps you on supported versions — AWS publishes guidance on when new open source engine versions land […]

admin 
Learning resources

JSONB Indexing in PostgreSQL: A Step-by-Step Guide

JSONB is one of PostgreSQL’s most popular features — it lets you store flexible, schema-less documents in a relational database. But the moment your JSONB table grows past a few thousand rows, unindexed queries start to crawl. The good news: PostgreSQL gives you several indexing strategies that keep JSONB fast without giving up flexibility. In […]

admin 
Learning resources

How to Migrate MySQL to PostgreSQL: Step-by-Step

MySQL and PostgreSQL are the two most widely used open source relational databases, and the comparison keeps coming up — in benchmarks, in conference talks, and in migration tickets. Recent head-to-head tests continue to show PostgreSQL pulling ahead on advanced query features, JSON handling, and indexing flexibility. If your team has been considering a move, […]

admin 
Learning resources postgresql

Essential PostgreSQL Books Every Engineer Should Own

1. Learn PostgreSQL (latest edition) “Learn PostgreSQL” (recent editions target PostgreSQL 15–16) is a beginner-friendly, end-to-end introduction that stays useful even after you’re no longer a beginner. It walks through SQL basics, core internals like transactions and MVCC, replication, security, backups, and monitoring, with hands-on exercises that resemble real production use cases.goodreads+1​ Why a PostgreSQL […]

admin