Postgresql – How to suppress key for elements of aggregated JSON array
Working with jsonb and Postgres I'm running into the following problem: My output looks like this: [ {columnName: {}}, { columnName: {} } ] But I would like it to look like this: [ {}, {} ] I want to…