PostgreSQL - JSON and JSONB
Given the table
users with a JSON column profile containing {"name": "Alice", "age": 30}, what is the output of:SELECT profile->>'name' FROM users WHERE id=1;