PostgreSQL - JSON and JSONB
Which PostgreSQL data type is better suited for fast querying and indexing of JSON data?
jsonb is designed for efficient querying and supports indexes like GIN.json stores plain text and is slower for queries; text and xml are not optimized for JSON querying.jsonb is better suited for fast querying and indexing. -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions