PostgreSQL - JSON and JSONB
Given the table
users with a JSON column profile, what does this query return?SELECT profile->>'name' FROM users WHERE profile->>'age' = '30';
