Postgresql – Insert or update object for a jsonb array in postgres
I have a table listings with a jsonb column named data. Inside the data column I have the next structure { "attributes": { "listings": [ { "vin": "a", ... }, { "vin": "b", ... } ] } } I am…