问题 I have the following table CREATE TABLE country ( id INTEGER NOT NULL PRIMARY KEY , name VARCHAR(50), extra_info JSONB ); INSERT INTO country(id,extra_info) VALUES (1, '{ "name" : "France", "population" : "65000000", "flag_colours": ["red", "blue","white"]}'); INSERT INTO country(id,extra_info) VALUES (2, '{ "name": "Spain", "population" : "47000000", "borders": ["Portugal", "France"] }'); and i can add an element to the array like this UPDATE country SET extra_info = jsonb_set(extra_info, '