PostgreSQL - JSON and JSONB
Given the table
CREATE TABLE orders (id SERIAL, info JSONB); and the insert INSERT INTO orders (info) VALUES ('{"item":"book","qty":3}');, what will the query SELECT info->>'item' FROM orders WHERE id=1; return?