PostgreSQL - JSON and JSONB
Given the JSONB column
data with value '{"name": "Alice", "details": {"age": 30}}', what will be the result of this query?SELECT jsonb_set(data, '{details,age}', '31', false) FROM table;