extract property value from set of json arrays - Mailing list pgsql-general

From AC Gomez
Subject extract property value from set of json arrays
Date
Msg-id CABtmK-iYO9aSObk6DcNPBdX_fL+Hn3F+Mu32PRaoNJOB=hyS1Q@mail.gmail.com
Whole thread Raw
Responses Re: extract property value from set of json arrays
List pgsql-general
I have the following in a postgresql table
row 1: {"a": 1, "b": "[{"c": "123", "d":"456", "e": "789"},  {"c": "222", "d":"111", "e": "000"} ]"}
row 2: {"a": 2, "b": "[{"c": "XXX", "d":"YYY", "e": "ZZZ"},  {"c": "666", "d":"444", "e": "333"} ]"}

How do I pullout all "b":"e" values  and end up with this result:
789
000
ZZZ
333


pgsql-general by date:

Previous
From: Guyren Howe
Date:
Subject: How to unnest nested arrays
Next
From: "David G. Johnston"
Date:
Subject: Re: How to unnest nested arrays