https://www.postgresql.org/docs/14/datatype-json.html Example ```sql SELECT jsonb_column['key'] FROM table; UPDATE table SET jsonb_column['key'] = '"value"'; ```
https://www.postgresql.org/docs/14/datatype-json.html
Example