Postgresql : Append element in json array objects
问题 I have below jsonb data stored in table column as below: '{"info":[ { "database": "Oracle", "company" : "Oracle" }, { "database":"Sql Server", "company" :"Microsoft" }, { "database":"DB2", "company" :"IBM" } ]}' i need to append a element "License" : "Proprietary" to all objects present in json array like below: '{"info":[ { "database": "Oracle", "company" : "Oracle", "License" : "Proprietary" }, { "database":"Sql Server", "company" :"Microsoft", "License" : "Proprietary" }, { "database":"DB2