PostgreSQL - JSON and JSONB
What will be the result of this query on a table
users with a GIN index on JSONB column profile?SELECT * FROM users WHERE profile @> '{"age": 30}';Assuming some rows have "age": 30 inside their JSONB data.