0
我在表中具有table_json
以下記錄:的PostgreSQL 9.5:顯示JSON數據到表
表:
id doc
---------------------------------------
1
{"name":"Shaw",
"address":{"line1":"L1",
"line2":"L2",
"zipcode":"12345"
}
}
注:柱doc
是json
類型。現在我想將json數據打印成以下格式的 。
預計輸出:
id name address
--------------------------
1 Shaw L1,L2,12345
你可以通過https://www.postgresql.org/docs/9.5/static/functions- json.html並相應地使用這些函數。 – Pragun