Postgresql – Add new Property in Jsonb column by calculating some of its properties Using Postgressql
I have a jsonb column such that: | id | fee | |----------|----------------------------------------| | 1 | "[{"Step": "step1", "Value": "10"}]" | | 2 | "[{"Step": "step1", "Value": "999"}]" | | 3 | [] | And I want to calculate the…