Postgresql – postgres – How to parse json array elements?
Below is the postgres table table1: CREATE TABLE table1 ( id INT PRIMARY KEY, name TEXT, skills JSON ); with below rows inserted: INSERT INTO table1 (id, name, skills) VALUES (1, 'Alice', ‘[ {“sid" : 11, "description" : “Cardio"}, {"sid"…