1.建立示例表json
create temp table settings as select '{"west": [ {"id": "aa92f346-7a93-4443-949b-4eab0badd983", "version": 1}, {"id": "cd92e346-6b04-3456-050a-5eeb0bddd027", "version": 3} ]}'::jsonb as value;
2.以下保留version=1的數據, 若是把where (j->>'version')::int = 1改成where (j->>'version')::int <> 1 則進行刪除操做post
update settings set value = jsonb_set(value, '{west}', jsonb_build_array(ARRAY(select j from (SELECT jsonb_array_elements(value->'west') j from settings ) as b where (j->>'version')::int = 1)))
參考資料:ui
http://stackoverflow.com/questions/38640168/find-position-of-object-in-postgres-jsonb-arrayspa
http://dba.stackexchange.com/questions/54283/how-to-turn-json-array-into-postgres-arraycode