PostgreSQL - Advanced Features
Given the table
users(id SERIAL PRIMARY KEY, data JSONB) with data:{"name": "Alice", "age": 30} in the data column, what does this query return?SELECT data->>'name' FROM users WHERE data->>'age' = '30';
