标签:
使用 jsonb[] 转 jsonb 类型,可以使用 postgres9.4 提供的 array_to_json 方法
alter table "Patients" alter column contact type jsonb using array_to_json(contact)::jsonb;
现在搞定
postgre9.4 jsonb[] 转 jsonb
原文地址:http://www.cnblogs.com/liuzk552/p/5497809.html