PostgreSQL - JSON and JSONB
Given the table
items with a json column data storing '{"a":1, "b":2}', what will this query return?SELECT data @> '{"a":1}'::jsonb FROM items;