Postgresql – How to get all the objects from a json array in postgres but selecting just certain properties?
I have a jsonb column in a table, and this colum (named services) contains an array of objects like this: [{"id": "1", "service_id": "4100002"}, {"id": "2", "service_id": "4100003"}, {"id": "3", "service_id": "410004"}] If this same table contains two more columns;…