PostgreSQL - JSON and JSONB
You want to update a nested key in a JSONB column but your query
throws an error. What is the likely cause?
UPDATE table SET data = jsonb_set(data, '{info,score}', 100);throws an error. What is the likely cause?
