Skip to main content

Advanced PostgreSQL Features

JSON and JSONB Data

0:00
LearnStep 1/2

JSON/JSONB in PostgreSQL

Working with JSON/JSONB

JSON vs JSONB

JSONJSONB
Stores exact copyBinary format
Preserves whitespaceNo whitespace
Preserves key orderKeys sorted
Slower queriesFaster queries
No indexingSupports GIN indexes

JSONB with SQLAlchemy

python

Inserting JSON Data

python

Querying JSON Data

python

Updating JSON

python

JSONB Indexing

python